TreeData constructor

TreeData(
  1. String code,
  2. String title,
  3. dynamic data, {
  4. bool expanded = false,
})

Implementation

TreeData(this.code, this.title, this.data, {this.expanded = false}) : assert(code != null && code != null && title != null) ;