selectAll method
void
selectAll()
selects all the items.
Implementation
void selectAll() {
_selected.addAll(items);
notifyListeners();
_onSelectionChanged?.call(_selectedValues);
}
selects all the items.
void selectAll() {
_selected.addAll(items);
notifyListeners();
_onSelectionChanged?.call(_selectedValues);
}