Service constructor

Service({
  1. bool? active,
  2. String? currencyCode,
  3. List<String>? deliveryCountries,
  4. DeliveryTime? deliveryTime,
  5. List<LoyaltyProgram>? loyaltyPrograms,
  6. Price? minimumOrderValue,
  7. MinimumOrderValueTable? minimumOrderValueTable,
  8. List<RateGroup>? rateGroups,
  9. String? serviceName,
  10. String? shipmentType,
  11. StoreConfig? storeConfig,
})

Implementation

Service({
  this.active,
  this.currencyCode,
  this.deliveryCountries,
  this.deliveryTime,
  this.loyaltyPrograms,
  this.minimumOrderValue,
  this.minimumOrderValueTable,
  this.rateGroups,
  this.serviceName,
  this.shipmentType,
  this.storeConfig,
});