TreeValue<TypeID extends Object, TypeData> constructor

TreeValue<TypeID extends Object, TypeData>({
  1. TypeID? id,
  2. bool checked = false,
  3. bool expand = false,
  4. String text = '',
  5. TypeData? userdata,
})

Implementation

TreeValue({
  this.id,
  this.checked = false,
  this.expand = false,
  this.text = '',
  this.userdata,
});