TreeData constructor

TreeData(
  1. num value,
  2. List<TreeData> children, {
  3. String? label,
  4. String? id,
})

Implementation

TreeData(this.value, this.children, {this.label, this.id});