expandCascading method

void expandCascading(
  1. Iterable<T> nodes
)

Traverses the subtrees of nodes in depth first order expanding every visited node, then calls rebuild.

Implementation

void expandCascading(Iterable<T> nodes) {
  if (nodes.isEmpty) return;
  _applyCascadingAction(nodes, _expand);
  rebuild();
}