expandAll method

void expandAll()

Implementation

void expandAll() {
  _expanded.clear();
  TreeOps.walk<T>(_roots, (n, _) {
    if (n.isFolder) _expanded.add(n.id);
  });
  notifyListeners();
}