NiceTreeNode<T> constructor
- required String key,
- required T data,
- List<
NiceTreeNode< children = const [],T> > - bool expanded = false,
- IconData? icon,
Implementation
NiceTreeNode({
required this.key,
required this.data,
this.children = const [],
this.expanded = false,
this.icon,
});