ShopifyCountry constructor

ShopifyCountry({
  1. int? id,
  2. String? name,
  3. String? code,
  4. String? taxName,
  5. double? tax,
  6. List<Provinces>? provinces,
})

Implementation

ShopifyCountry(
    {this.id, this.name, this.code, this.taxName, this.tax, this.provinces});