expandAll method

void expandAll()

Expands all nodes in the tree.

Implementation

void expandAll() {
  setState(() {
    _setExpansionState(_roots, true);
  });
}