TreeNode constructor

TreeNode({
  1. Key? key,
  2. List<TreeNode>? children,
  3. Widget? content,
})

Implementation

TreeNode({this.key, this.children, Widget? content})
    : content = content ?? Container(width: 0, height: 0);