KatTreeNodeData constructor
KatTreeNodeData({
- required String? title,
- required bool expanded,
- required bool checked,
- required bool displayRequired,
- required List<
KatTreeNodeData> ? children, - Widget? childWidget,
- bool allowAdd = false,
- bool allowRemove = false,
- dynamic extra,
- Color? checkBoxCheckColor,
- WidgetStateProperty<
Color> ? checkBoxFillColor, - ValueGetter<
Color> ? backgroundColor, - List<
Widget> ? customActions,
Implementation
KatTreeNodeData({
required this.title,
required this.expanded,
required this.checked,
required this.displayRequired,
required this.children,
this.childWidget,
this.allowAdd = false,
this.allowRemove = false,
this.extra,
this.checkBoxCheckColor,
this.checkBoxFillColor,
this.backgroundColor,
this.customActions,
});