Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
req_create_driver_collection_entity.dart
Go to the documentation of this file.
1import 'package:equatable/equatable.dart';
2
4 final List<CollectionPointEntity> collectionPoints;
6
8 required this.collectionPoints,
9 required this.user,
10 });
11
12 @override
13 List<Object> get props => [collectionPoints, user];
14}
15
16class CollectionPointEntity extends Equatable {
17 final int id;
18
20 required this.id,
21 });
22
23 @override
24 List<Object> get props => [id];
25}
26
27class UserEntity extends Equatable {
28 final int id;
29
30 const UserEntity({
31 required this.id,
32 });
33
34 @override
35 List<Object> get props => [id];
36}
const UserEntity({ required this.id, })
const ReqCreateDriverCollectionEntity({ required this.collectionPoints, required this.user, })
override List< Object?> get props
final List< CollectionPointEntity > collectionPoints
String get(String locale)
const CollectionPointEntity({ required this.id, })
abstract class UseCase< Type, Params > props