Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
history_collections_event.dart
Go to the documentation of this file.
1part of 'history_collections_bloc.dart';
2
3sealed class HistoryCollectionsEvent extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
11 final int userId;
12 final String? period;
13
15 required this.userId,
16 required this.period,
17 });
18
19 @override
20 List<Object> get props => [userId, period ?? ''];
21}
22
24 final int userId;
25 final DateTime dateStart;
26 final DateTime dateEnd;
27
29 required this.userId,
30 required this.dateStart,
31 required this.dateEnd,
32 });
33
34 @override
35 List<Object> get props => [userId, dateStart, dateEnd];
36}
sealed class CheckInOutEvent extends Equatable userId
const HistoryCollectionsEvent()
override List< Object?> get props
override List< Object > get props
const LoadHistoryCollectionsWithDateRangeEvent({ required this.userId, required this.dateStart, required this.dateEnd, })
class Partner String
String get(String locale)
const LoadHistoryCollectionsEvent({ required this.userId, required this.period, })
abstract class PeriodEvent extends Equatable period
abstract class UseCase< Type, Params > props