Business Login Flutter Apps
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 line
296 B

  1. part of 'list_unit_bloc.dart';
  2. abstract class ListUnitEvent extends Equatable {
  3. const ListUnitEvent();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class ListUnit extends ListUnitEvent{
  8. const ListUnit({this.search, this.completed=false});
  9. final bool completed;
  10. final String? search;
  11. }