TreeNode constructor

TreeNode({
  1. required bool checked,
  2. required bool show,
  3. required int id,
  4. required int pid,
  5. required int commonID,
  6. required String title,
  7. required List<TreeNode> children,
})

Implementation

TreeNode({
  required this.checked,
  required this.show,
  required this.id,
  required this.pid,
  required this.commonID,
  required this.title,
  required this.children,
});