deselect method

void deselect(
  1. int index
)

Deselects index if selected.

Implementation

void deselect(int index) {
  if (_selected.remove(index)) {
    notifyListeners();
  }
}