Country constructor

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

Implementation

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