NiceTreeListNode<T> constructor
- required T data,
- List<
NiceTreeListNode< children = const [],T> > - bool expanded = false,
Implementation
NiceTreeListNode({
required this.data,
this.children = const [],
this.expanded = false,
});