TreeNode constructor
const
TreeNode({})
Implementation
const TreeNode({
required this.id,
required this.label,
this.icon,
this.children = const [],
this.disabled = false,
this.data,
});
const TreeNode({
required this.id,
required this.label,
this.icon,
this.children = const [],
this.disabled = false,
this.data,
});