deselect method

void deselect(
  1. K key
)

Implementation

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

  final newSelectedKeys = copyKeySet(selectedKeys)..remove(key);
  updateState(selectedKeys: newSelectedKeys, who: 'deselectKey');
}