TreeNode constructor

TreeNode(
  1. String code,
  2. String name,
  3. List<TreeNode> children
)

Implementation

TreeNode(this.code, this.name, this.children);