TransferDTO constructor
TransferDTO({
- String? id,
- String? createdAt,
- String? updatedAt,
- bool? isActive,
- bool? isDeleted,
- String? note,
- String? status,
- VehicleDTO? vehicle,
- WarehouseDTO? startWarehouse,
- WarehouseDTO? destinationWarehouse,
Implementation
TransferDTO(
{super.id,
super.createdAt,
super.updatedAt,
super.isActive,
super.isDeleted,
this.note,
this.status,
this.vehicle,
this.startWarehouse,
this.destinationWarehouse});