buildTree method

TreeNode buildTree(
  1. RootNodeInfo rootInfo
)

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);
}