Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
collections_to_schedule_state.dart
Go to the documentation of this file.
1part of 'collections_to_schedule_bloc.dart';
2
3abstract class CollectionsToScheduleState extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
10class CollectionsToScheduleInitial extends CollectionsToScheduleState {}
11
12class CollectionsToScheduleLoading extends CollectionsToScheduleState {}
13
15 final List<ResCollectionToScheduleEntity> collections;
16
17 const CollectionsToScheduleLoaded({required this.collections});
18
19 @override
20 List<Object> get props => [collections];
21}
22
25
26 const CollectionsToScheduleError({required this.failure});
27
28 @override
29 List<Object> get props => [failure];
30}
const CollectionsToScheduleError({required this.failure})
override List< Object?> get props
const CollectionsToScheduleState()
sealed class CollectionsState extends Equatable collections
const CollectionsToScheduleLoaded({required this.collections})
String get(String locale)
abstract class UseCase< Type, Params > props