expandAll method
Expands all nodes in the tree.
Implementation
void expandAll({bool notify = true}) {
traverse((node) => node.expand(notify: false));
if (notify) notifyListeners();
}
Expands all nodes in the tree.
void expandAll({bool notify = true}) {
traverse((node) => node.expand(notify: false));
if (notify) notifyListeners();
}