TreeRoot<T> constructor

TreeRoot<T>({
  1. required List<TreeNode<T>> children,
})

Implementation

TreeRoot({
  required this.children,
});