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 ListUnitState extends Equatable {
- const ListUnitState();
- @override
- List<Object> get props => [];
- }
-
- class ListUnitInitial extends ListUnitState {}
-
- class ListUnitLoading extends ListUnitState {}
-
- class ListUnitFinish extends ListUnitState {
- const ListUnitFinish ({required this.units,required this.blobs});
- final List<Unit> units;
- final List<Blob?> blobs;
- }
-
- class ListUnitError extends ListUnitState {
- const ListUnitError ({required this.err});
- final String err;
- }
-
|