deselectItemKey method

void deselectItemKey(
  1. K key
)

Implementation

void deselectItemKey(K key) {
  if (selectionMode == TSelectionMode.none) return;

  final newSelectedKeys = LinkedHashSet<K>.from(selectedKeys)..remove(key);
  updateSelectionState(newSelectedKeys, who: 'deselectItemKey');
}