isExpanded method

bool isExpanded(
  1. TreeSliverNode<Object?> node
)

Whether the given TreeSliverNode built with this controller is in an expanded state.

See also:

Implementation

bool isExpanded(TreeSliverNode<Object?> node) {
  assert(_state != null);
  return _state!.isExpanded(node);
}