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