Value constructor

Value({
  1. String? carrierRate,
  2. Price? flatRate,
  3. bool? noShipping,
  4. String? pricePercentage,
  5. String? subtable,
})

Implementation

Value({
  this.carrierRate,
  this.flatRate,
  this.noShipping,
  this.pricePercentage,
  this.subtable,
});