CityModel constructor

CityModel({
  1. required String? name,
  2. String? tagIndex,
  3. String? namePinyin,
  4. String? code,
})

Implementation

CityModel(
    {required this.name,
    this.tagIndex,
    this.namePinyin,
    this.code});