Result constructor

Result({
  1. String? provinceId,
  2. String? cityId,
  3. String? areaId,
  4. String? villageId,
  5. String? provinceName,
  6. String? cityName,
  7. String? areaName,
  8. String? villageName,
})

Implementation

Result({
  this.provinceId,
  this.cityId,
  this.areaId,
  // 增加第4级(村/镇)选择
  this.villageId,
  this.provinceName,
  this.cityName,
  this.areaName,
  // 增加第4级(村/镇)选择
  this.villageName,
});