expandAll method

void expandAll({
  1. bool notify = true,
})

Expands all nodes in the tree.

Implementation

void expandAll({bool notify = true}) {
  traverse((node) => node.expand(notify: false));
  if (notify) notifyListeners();
}