City constructor

City({
  1. required String id,
  2. String name = "",
  3. String countryCode = "",
  4. String district = "",
})

Implementation

City(
    {required this.id,
    this.name = "",
    this.countryCode = "",
    this.district = ""});