Countries constructor

Countries({
  1. int? id,
  2. String? name,
  3. double? tax,
  4. String? code,
  5. String? taxName,
  6. int? shippingZoneId,
  7. List<Provinces?> provinces = const [],
})

Implementation

Countries(
    {this.id,
    this.name,
    this.tax,
    this.code,
    this.taxName,
    this.shippingZoneId,
    this.provinces = const []});