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