TreeNode constructor
TreeNode({})
Implementation
TreeNode({
required this.id,
required this.label,
required this.iconData,
this.iconColor,
this.isFolder = false,
this.isExpanded = false,
this.isSelected = false,
this.children = const [],
this.data,
this.stateMode = NodeStateMode.synced,
});