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.
|
- part of 'list_unit_bloc.dart';
-
- abstract class ListUnitEvent extends Equatable {
- const ListUnitEvent();
- @override
- List<Object> get props => [];
- }
-
- class ListUnit extends ListUnitEvent{
- const ListUnit({this.search, this.completed=false});
- final bool completed;
- final String? search;
- }
|