selectAll method
Implementation
void selectAll(int itemCount) {
if (multiple) {
_selected = List.generate(itemCount, (i) => i);
_notify();
}
}
void selectAll(int itemCount) {
if (multiple) {
_selected = List.generate(itemCount, (i) => i);
_notify();
}
}