clear method
void
clear()
Clears all selection.
Implementation
void clear() {
if (_selected.isEmpty) {
return;
}
_selected.clear();
notifyListeners();
}
Clears all selection.
void clear() {
if (_selected.isEmpty) {
return;
}
_selected.clear();
notifyListeners();
}