Depot constructor

const Depot({
  1. int? id,
  2. String? name,
  3. String? location,
  4. double? latitude,
  5. double? longitude,
  6. int? businessUnitId,
  7. int? depotTypeId,
  8. int? depotStatus,
  9. BusinessUnit? businessUnit,
  10. DepotType? depotType,
  11. InternalArea? internalArea,
  12. int? internalAreaId,
  13. DateTime? createdDate,
  14. String? cluster,
  15. String? internalRegion,
})

Implementation

const factory Depot({
  int? id,
  String? name,
  String? location,
  double? latitude,
  double? longitude,
  int? businessUnitId,
  int? depotTypeId,
  int? depotStatus,
  BusinessUnit? businessUnit,
  DepotType? depotType,
  InternalArea? internalArea,
  int? internalAreaId,
  DateTime? createdDate,
  String? cluster,
  String? internalRegion,
}) = _Depot;