CityResult constructor

CityResult({
  1. String? province,
  2. String? city,
  3. String? area,
  4. String? provinceCode,
  5. String? cityCode,
  6. String? areaCode,
})

Implementation

CityResult({
  this.province,
  this.city,
  this.area,
  this.provinceCode,
  this.cityCode,
  this.areaCode,
});