Service constructor

Service({
  1. bool? active,
  2. String? currency,
  3. String? deliveryCountry,
  4. DeliveryTime? deliveryTime,
  5. String? eligibility,
  6. Price? minimumOrderValue,
  7. MinimumOrderValueTable? minimumOrderValueTable,
  8. String? name,
  9. PickupCarrierService? pickupService,
  10. List<RateGroup>? rateGroups,
  11. String? shipmentType,
  12. ServiceStoreConfig? storeConfig,
})

Implementation

Service({
  this.active,
  this.currency,
  this.deliveryCountry,
  this.deliveryTime,
  this.eligibility,
  this.minimumOrderValue,
  this.minimumOrderValueTable,
  this.name,
  this.pickupService,
  this.rateGroups,
  this.shipmentType,
  this.storeConfig,
});