constructor()

in src/components/base/form/form_checkbox_tree/models/node.js [4:11]


  constructor({ value, label, parent = null, children = [], depth, isChecked }) {
    this.value = value;
    this.label = label;
    this.parent = parent;
    this.children = children;
    this.depth = depth;
    this.checkedState = isChecked ? CHECKED_STATE.CHECKED : CHECKED_STATE.UNCHECKED;
  }