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