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