Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
res_collection_contact_model.dart
Go to the documentation of this file.
1import '../../../domain/entities/res/res_collection_contact_entity.dart';
2
4
6 required super.id,
7 required super.reference,
8 });
9
10 factory ResCollectionContactModel.fromJson(Map<String, dynamic> json) {
12 id: json['id'],
13 reference: json['reference'],
14 );
15 }
16
17 Map<String, dynamic> toJson() {
18 return {
19 'id': id,
20 'reference': reference,
21 };
22 }
23
30
31}
ResCollectionContactModel({ required super.id, required super.reference, })
ResCollectionContactEntity({ this.id, this.reference, })
ResCollectionContactEntity toEntity()
class GetCollectionContactListParams ResCollectionContactEntity