StoreShipmentMethodPriceBody constructor

StoreShipmentMethodPriceBody({
  1. String? description,
  2. int? startCartAmount,
  3. int? endCartAmount,
  4. double? price,
  5. double? taxPercentage,
  6. String? currency,
  7. String? country,
  8. String? state,
  9. String? city,
  10. String? district,
})

Implementation

StoreShipmentMethodPriceBody({
  this.description,
  this.startCartAmount,
  this.endCartAmount,
  this.price,
  this.taxPercentage,
  this.currency,
  this.country,
  this.state,
  this.city,
  this.district,
});