Province constructor

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

Implementation

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