Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
collections_to_schedule_event.dart
Go to the documentation of this file.
1part of 'collections_to_schedule_bloc.dart';
2
3abstract class CollectionsToScheduleEvent extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
14 final int driverId;
15
17 required this.request,
18 required this.startDate,
19 required this.endDate,
20 required this.driverId,
21 });
22
23 @override
24 List<Object> get props => [request, startDate, endDate, driverId];
25}
26
30 final int driverId;
31
33 required this.startDate,
34 required this.endDate,
35 required this.driverId,
36 });
37
38 @override
39 List<Object> get props => [startDate, endDate, driverId];
40}
const GetCollectionsToScheduleEvent({ required this.startDate, required this.endDate, required this.driverId, })
const CollectionsToScheduleEvent()
override List< Object?> get props
const CreateDriverCollectionEvent({ required this.request, required this.startDate, required this.endDate, required this.driverId, })
abstract class CollectionsToScheduleEvent extends Equatable request
final String startDate
final String endDate
class Partner String
String get(String locale)
abstract class UseCase< Type, Params > props