OnSelectEntityInterceptor typedef
OnSelectEntityInterceptor =
bool Function(int? listIndex, int index, PickerEntity entity)
单个 item 点击的回调
listIndex 点击位置处于第几列
index 点击位置处于当前列的位置
entity 被点击位置的数据
Implementation
typedef OnSelectEntityInterceptor = bool Function(
int? listIndex, int index, PickerEntity entity);