expandAll method
      
void
expandAll()
      
     
    
Expands all nodes in the tree.
Implementation
void expandAll() {
  setState(() {
    _setExpansionState(_roots, true);
  });
}Expands all nodes in the tree.
void expandAll() {
  setState(() {
    _setExpansionState(_roots, true);
  });
}