expandAll method

void expandAll()

Implementation

void expandAll() {
  NavOps.walk<T>(_sections, (n, _) {
    if (n.hasChildren) _expanded.add(n.id);
  });
  notifyListeners();
}