DeliveryTime constructor

DeliveryTime({
  1. CutoffTime? cutoffTime,
  2. BusinessDayConfig? handlingBusinessDayConfig,
  3. int? maxHandlingDays,
  4. int? maxTransitDays,
  5. int? minHandlingDays,
  6. int? minTransitDays,
  7. BusinessDayConfig? transitBusinessDayConfig,
  8. TransitTable? transitTimeTable,
  9. List<WarehouseBasedDeliveryTime>? warehouseBasedDeliveryTimes,
})

Implementation

DeliveryTime({
  this.cutoffTime,
  this.handlingBusinessDayConfig,
  this.maxHandlingDays,
  this.maxTransitDays,
  this.minHandlingDays,
  this.minTransitDays,
  this.transitBusinessDayConfig,
  this.transitTimeTable,
  this.warehouseBasedDeliveryTimes,
});