TreeNode<T> constructor
const
TreeNode<T> ({})
Implementation
const TreeNode({
required this.id,
required this.label,
this.children = const [],
this.value,
this.icon,
this.badge,
this.folder,
this.selectable = true,
this.data = const {},
});