Taxes constructor

Taxes({
  1. String? taxId,
  2. String? name,
  3. String? priceType,
  4. String? price,
  5. int? percentage,
  6. String? totalPrice,
  7. int? quantity,
  8. String? totalAmount,
  9. String? upcProductOfferId,
  10. String? glCode,
  11. bool? enabled,
  12. bool? adhoc,
})

Implementation

Taxes(
    {this.taxId,
      this.name,
      this.priceType,
      this.price,
      this.percentage,
      this.totalPrice,
      this.quantity,
      this.totalAmount,
      this.upcProductOfferId,
      this.glCode,
      this.enabled,
      this.adhoc});