Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
weekly_collections_event.dart
Go to the documentation of this file.
1part of 'weekly_collections_bloc.dart';
2
3sealed class WeeklyCollectionsEvent extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
11 final int userId;
14
16 required this.userId,
17 required this.startDate,
18 required this.endDate,
19 });
20
21 @override
22 List<Object> get props => [userId, startDate, endDate];
23}
24
27
28 const SearchWeeklyCollectionsEvent({required this.query});
29
30 @override
31 List<Object> get props => [query];
32}
33
36
37 const ToggleCollectionSelectionEvent({required this.collection});
38
39 @override
40 List<Object> get props => [collection];
41}
42
43class ClearSelectionEvent extends WeeklyCollectionsEvent {}
44
45class SelectAllCollectionsEvent extends WeeklyCollectionsEvent {}
sealed class CheckInOutEvent extends Equatable userId
const WeeklyCollectionsEvent()
override List< Object?> get props
override List< Object > get props
const SearchWeeklyCollectionsEvent({required this.query})
final String startDate
final String endDate
class Partner String
String get(String locale)
abstract class UseCase< Type, Params > props
class SearchWeeklyCollectionsEvent extends WeeklyCollectionsEvent collection
const ToggleCollectionSelectionEvent({required this.collection})
const LoadWeeklyCollectionsEvent({ required this.userId, required this.startDate, required this.endDate, })