Tax constructor

Tax({
  1. String? name,
  2. TotalPriceClass? unitPrice,
  3. TotalPriceClass? totalPrice,
  4. int? quantity,
  5. dynamic taxType,
  6. int? taxRate,
  7. bool? adhoc,
})

Implementation

Tax({
  this.name,
  this.unitPrice,
  this.totalPrice,
  this.quantity,
  this.taxType,
  this.taxRate,
  this.adhoc,
});