select method
Selects index if not already selected.
Implementation
void select(int index) {
if (_selected.add(index)) {
notifyListeners();
}
}
Selects index if not already selected.
void select(int index) {
if (_selected.add(index)) {
notifyListeners();
}
}