TreeNode constructor
TreeNode({})
Implementation
TreeNode({
this.id,
this.title,
this.code,
this.isCheck = false,
this.hierarchy = 0,
this.parent,
this.children = const [],
});
TreeNode({
this.id,
this.title,
this.code,
this.isCheck = false,
this.hierarchy = 0,
this.parent,
this.children = const [],
});