expandNode method

void expandNode(
  1. TreeViewNode<Object?> node
)

Expands the TreeViewNode that was built with this controller.

If the node is already in the expanded state (see isExpanded), calling this method has no effect.

Calling this method may cause the TreeView to rebuild, so it may not be called from a build method.

Calling this method will trigger the TreeView.onNodeToggle callback.

See also:

Implementation

void expandNode(TreeViewNode<Object?> node) {
  assert(_state != null);
  if (!node.isExpanded) {
    _state!.toggleNode(node);
  }
}