AreaPickerSelectedIndexsModel constructor

AreaPickerSelectedIndexsModel({
  1. int? provinceIndex,
  2. int? cityIndex,
  3. int? districtIndex,
})

Implementation

AreaPickerSelectedIndexsModel({
  this.provinceIndex, // 选中的省份的index
  this.cityIndex, // 选中的市的index
  this.districtIndex, // 选中的区的index
});