TaxLine constructor

TaxLine({
  1. int? id,
  2. String? rateCode,
  3. int? rateId,
  4. String? label,
  5. bool? compound,
  6. String? taxTotal,
  7. String? shippingTaxTotal,
  8. List? metaData,
})

Implementation

TaxLine({
  this.id,
  this.rateCode,
  this.rateId,
  this.label,
  this.compound,
  this.taxTotal,
  this.shippingTaxTotal,
  this.metaData,
});