buildTree method
Creates a root TreeNode
that is fully populated with its descendant
nodes, based on the description provided by rootInfo
.
Implementation
TreeNode buildTree(RootNodeInfo rootInfo) {
return _buildNode(rootInfo);
}
Creates a root TreeNode
that is fully populated with its descendant
nodes, based on the description provided by rootInfo
.
TreeNode buildTree(RootNodeInfo rootInfo) {
return _buildNode(rootInfo);
}