collapseNode method

void collapseNode(
  1. TreeSliverNode<Object?> node
)

Collapses the TreeSliverNode that was built with this controller.

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

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

Calling this method will trigger the TreeSliver.onNodeToggle callback.

See also:

Implementation

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