collapseExpandNode method

void collapseExpandNode(
  1. TreeNode node
)

Implementation

void collapseExpandNode(TreeNode node) {
  final status =
      node.treeConfiguration.isExpanded = !node.treeConfiguration.isExpanded;
  findChildren(node, status);
  emit(state.copyWith(rootNodes: state.rootNodes));
}