updateSelectionState method

void updateSelectionState(
  1. LinkedHashSet<K> selectedKeys, {
  2. String who = '',
})

Implementation

void updateSelectionState(LinkedHashSet<K> selectedKeys, {String who = ''}) {
  updateState(
    who: 'updateSelectionState $who',
    selectedKeys: selectedKeys,
  );
}