Node<T> constructor
Implementation
const Node({
required this.key,
required this.label,
this.children = const [],
this.expanded = false,
this.parent = false,
this.icon,
this.data,
});
const Node({
required this.key,
required this.label,
this.children = const [],
this.expanded = false,
this.parent = false,
this.icon,
this.data,
});