selectAll method
void
selectAll()
Selects all items in the tree recursively.
Implementation
void selectAll() {
_items.executeForAll((item) {
item.selected = true;
});
_rebuild();
}
Selects all items in the tree recursively.
void selectAll() {
_items.executeForAll((item) {
item.selected = true;
});
_rebuild();
}