TaxBody constructor

TaxBody({
  1. String? name,
  2. double? percentage,
  3. String? storeId,
})

Implementation

TaxBody({
  this.name,
  this.percentage,
  this.storeId,
});