Countries constructor

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

Implementation

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