Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
check_in_status_model.dart
Go to the documentation of this file.
3 final int userId;
4 final int vehicleId;
5
7 required this.immatriculation,
8 required this.userId,
9 required this.vehicleId,
10 });
11
12 factory CheckInStatusModel.fromJson(Map<String, dynamic> json) {
13 return CheckInStatusModel(
14 immatriculation: json['immatriculation'],
15 userId: json['userId'],
16 vehicleId: json['vehicleId'],
17 );
18 }
19
20 Map<String, dynamic> toJson() {
21 return {
22 'immatriculation': immatriculation,
23 'userId': userId,
24 'vehicleId': vehicleId,
25 };
26 }
27}
CheckInStatusModel({ required this.immatriculation, required this.userId, required this.vehicleId, })
Map< String, dynamic > toJson()
class Partner String