CityModel constructor

CityModel({
  1. required String name,
  2. double? longitude,
  3. double? latitude,
  4. List<CityModel>? city,
  5. List<String>? area,
})

Implementation

CityModel({
  required this.name,
  this.longitude,
  this.latitude,
  this.city,
  this.area,
});