Provinces constructor

Provinces({
  1. int? id,
  2. int? countryId,
  3. String? name,
  4. String? code,
  5. double? tax,
  6. String? taxName,
  7. String? taxType,
  8. int? taxPercentage,
  9. int? shippingZoneId,
})

Implementation

Provinces(
    {this.id,
    this.countryId,
    this.name,
    this.code,
    this.tax,
    this.taxName,
    this.taxType,
    this.taxPercentage,
    this.shippingZoneId});