deselect method
Deselects index if selected.
Implementation
void deselect(int index) {
if (_selected.remove(index)) {
notifyListeners();
}
}
Deselects index if selected.
void deselect(int index) {
if (_selected.remove(index)) {
notifyListeners();
}
}