Region constructor

Region({
  1. int? id,
  2. String? name,
  3. String? nameAr,
  4. int? countryId,
  5. List<City>? city,
})

Implementation

Region({this.id, this.name, this.nameAr, this.countryId, this.city});