WeightBasedShippingRates constructor

WeightBasedShippingRates({
  1. int? id,
  2. String? name,
  3. String? price,
  4. int? shippingZoneId,
  5. int? weightLow,
  6. int? weightHigh,
})

Implementation

WeightBasedShippingRates(
    {this.id,
    this.name,
    this.price,
    this.shippingZoneId,
    this.weightLow,
    this.weightHigh});