Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
res_collection_rating_reason_model.dart
Go to the documentation of this file.
1import '../../../domain/entities/res/res_collection_rating_reason_entity.dart';
2
5 required super.id,
6 required super.name,
7 });
8
9 factory ResCollectionRatingReasonModel.fromJson(Map<String, dynamic> json) {
11 id: json['id'],
12 name: json['name'],
13 );
14 }
15
16 Map<String, dynamic> toJson() {
17 return {
18 'id': id,
19 'name': name,
20 };
21 }
22}
ResCollectionRatingReasonModel({ required super.id, required super.name, })
ResCollectionRatingReasonEntity({ required this.id, required this.name, })