ProductTax constructor

ProductTax({
  1. String? country,
  2. String? locationId,
  3. String? postalCode,
  4. double? rate,
  5. String? region,
  6. bool? taxShip,
})

Implementation

ProductTax({
  this.country,
  this.locationId,
  this.postalCode,
  this.rate,
  this.region,
  this.taxShip,
});