City constructor
City({})
Constructs a City object.
All fields are required and must be provided during object creation.
Implementation
City({
required this.name,
required this.population,
required this.area,
required this.tehsils,
});