deselect method
void
deselect(
- K key
Implementation
void deselect(K key) {
if (selectionMode == TSelectionMode.none) return;
final newSelectedKeys = copyKeySet(selectedKeys)..remove(key);
updateState(selectedKeys: newSelectedKeys, who: 'deselectKey');
}