Country constructor

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

Implementation

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