expandAll method

void expandAll()

Expands all nodes of this tree recursively.

This method delegates its call to expandCascading passing in roots as the nodes to be expanded.

Implementation

void expandAll() => expandCascading(roots);