deselectCurrentSelection method

void deselectCurrentSelection()

Implementation

void deselectCurrentSelection() {
  if (selection.isNotEmpty) {
    selection.deselect(selection.selectedValues.single);
  }
}