CheckoutTax constructor

CheckoutTax({
  1. int? id,
  2. double? taxPercentage,
  3. String? name,
  4. String? taxType,
  5. String? code,
  6. int? shippingZoneId,
})

Implementation

CheckoutTax(
    {this.id,
    this.taxPercentage,
    this.name,
    this.taxType,
    this.code,
    this.shippingZoneId});