Warehouse constructor

Warehouse({
  1. BusinessDayConfig? businessDayConfig,
  2. WarehouseCutoffTime? cutoffTime,
  3. String? handlingDays,
  4. String? name,
  5. Address? shippingAddress,
})

Implementation

Warehouse({
  this.businessDayConfig,
  this.cutoffTime,
  this.handlingDays,
  this.name,
  this.shippingAddress,
});