AreaInfo constructor

AreaInfo(
  1. AreaModel? province,
  2. AreaModel? city,
  3. AreaModel? county,
  4. int provinceIndex,
  5. int cityIndex,
  6. int countyIndex,
)

Implementation

AreaInfo(
  this.province,
  this.city,
  this.county,
  this.provinceIndex,
  this.cityIndex,
  this.countyIndex,
);