TransferDTO constructor

TransferDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? note,
  7. String? status,
  8. VehicleDTO? vehicle,
  9. WarehouseDTO? startWarehouse,
  10. WarehouseDTO? destinationWarehouse,
})

Implementation

TransferDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.note,
    this.status,
    this.vehicle,
    this.startWarehouse,
    this.destinationWarehouse});