TestTreeModel constructor

TestTreeModel({
  1. String? id,
  2. String? pid,
  3. bool? checked,
  4. String? c1,
  5. String? c2,
})

Implementation

TestTreeModel({
  this.id,
  this.pid,
  this.checked,
  this.c1,
  this.c2,
}) : super(id, pid);