updateColumn method
弹制更新指定列的内容 当 onSelect 事件中,修改了当前列前面的列的内容时,可以调用此方法来更新显示
Implementation
void updateColumn(int index, [bool all = false]) {
if (all) {
_state?.update();
return;
}
if (_state?._keys[index] != null) {
adapter.setColumn(index - 1);
_state?._keys[index]!(() => null);
}
}