SaleTaxes constructor

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

Implementation

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