BrnOnPickerConfirm typedef
BrnOnPickerConfirm =
void Function(Map<String, List<PickerEntity> > results, int? firstIndex, int? secondIndex, int? thirdIndex)
单个数据项被点击的回调,
results
选中的数据项
firstIndex
第一列被选中数据的位置
secondIndex
第二列被选中数据的位置
thirdIndex
第三列被选中数据的位置
Implementation
typedef BrnOnPickerConfirm = void Function(
Map<String, List<PickerEntity>> results,
int? firstIndex,
int? secondIndex,
int? thirdIndex);