CarrierRate constructor

CarrierRate({
  1. String? carrierName,
  2. String? carrierService,
  3. Price? flatAdjustment,
  4. String? name,
  5. String? originPostalCode,
  6. String? percentageAdjustment,
})

Implementation

CarrierRate({
  this.carrierName,
  this.carrierService,
  this.flatAdjustment,
  this.name,
  this.originPostalCode,
  this.percentageAdjustment,
});