Node<T> constructor
Node<T> ({})
Implementation
Node({
required this.id,
required this.label,
required this.type,
this.data,
this.children = const [],
this.isExpanded = false,
});
Node({
required this.id,
required this.label,
required this.type,
this.data,
this.children = const [],
this.isExpanded = false,
});