Taxes constructor

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

Implementation

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