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