CarrierShipping constructor

CarrierShipping({
  1. String? carrierPrice,
  2. Price? carrierPriceFlatAdjustment,
  3. double? carrierPricePercentageAdjustment,
  4. String? carrierTransitTime,
  5. String? country,
  6. String? fixedMaxTransitTime,
  7. String? fixedMinTransitTime,
  8. Price? flatPrice,
  9. String? maxHandlingTime,
  10. String? minHandlingTime,
  11. String? originPostalCode,
  12. String? postalCode,
  13. String? region,
})

Implementation

CarrierShipping({
  this.carrierPrice,
  this.carrierPriceFlatAdjustment,
  this.carrierPricePercentageAdjustment,
  this.carrierTransitTime,
  this.country,
  this.fixedMaxTransitTime,
  this.fixedMinTransitTime,
  this.flatPrice,
  this.maxHandlingTime,
  this.minHandlingTime,
  this.originPostalCode,
  this.postalCode,
  this.region,
});