Value constructor

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

Implementation

Value({
  this.carrierRateName,
  this.flatRate,
  this.noShipping,
  this.pricePercentage,
  this.subtableName,
});