Tax constructor
Tax({
- String? name,
- TotalPriceClass? unitPrice,
- TotalPriceClass? totalPrice,
- int? quantity,
- dynamic taxType,
- int? taxRate,
- bool? adhoc,
Implementation
Tax({
this.name,
this.unitPrice,
this.totalPrice,
this.quantity,
this.taxType,
this.taxRate,
this.adhoc,
});