TaxRate constructor

TaxRate({
  1. int? id,
  2. String? country,
  3. String? state,
  4. String? postcode,
  5. String? city,
  6. String? rate,
  7. String? name,
  8. int? priority,
  9. bool? compound,
  10. bool? shipping,
  11. int? order,
  12. String? taxClass,
  13. Links? links,
})

Implementation

TaxRate(
    {this.id,
    this.country,
    this.state,
    this.postcode,
    this.city,
    this.rate,
    this.name,
    this.priority,
    this.compound,
    this.shipping,
    this.order,
    this.taxClass,
    this.links});