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