TreeValueController<TypeID extends Object, TypeData> constructor

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

Implementation

TreeValueController({
  TypeID? id,
  bool checked = false,
  bool expand = false,
  String? text,
  TypeData? userdata,
}) : super(TreeValue(
        id: id,
        checked: checked,
        expand: expand,
        text: text ?? '',
        userdata: userdata,
      ));