DeliveryTime constructor

DeliveryTime({
  1. CutoffTime? cutoffTime,
  2. BusinessDayConfig? handlingBusinessDayConfig,
  3. List<HolidayCutoff>? holidayCutoffs,
  4. int? maxHandlingTimeInDays,
  5. int? maxTransitTimeInDays,
  6. int? minHandlingTimeInDays,
  7. int? minTransitTimeInDays,
  8. BusinessDayConfig? transitBusinessDayConfig,
  9. TransitTable? transitTimeTable,
  10. List<WarehouseBasedDeliveryTime>? warehouseBasedDeliveryTimes,
})

Implementation

DeliveryTime({
  this.cutoffTime,
  this.handlingBusinessDayConfig,
  this.holidayCutoffs,
  this.maxHandlingTimeInDays,
  this.maxTransitTimeInDays,
  this.minHandlingTimeInDays,
  this.minTransitTimeInDays,
  this.transitBusinessDayConfig,
  this.transitTimeTable,
  this.warehouseBasedDeliveryTimes,
});