FlutterTreePro constructor
FlutterTreePro({
- Key? key,
- List<
Map< treeData = const <Map<String, dynamic>>[],String, dynamic> > - Map<
String, dynamic> initialTreeData = const <String, dynamic>{}, - Config config = const Config(),
- List<
Map< listData = const <Map<String, dynamic>>[],String, dynamic> > - List<
Map< initialListData = const <Map<String, dynamic>>[],String, dynamic> > - required dynamic onChecked(),
- bool isExpanded = false,
- bool isRTL = false,
- bool isSingleSelect = false,
- int initialSelectValue = 0,
Implementation
FlutterTreePro({
Key? key,
this.treeData = const <Map<String, dynamic>>[],
this.initialTreeData = const <String, dynamic>{},
this.config = const Config(),
this.listData = const <Map<String, dynamic>>[],
this.initialListData = const <Map<String, dynamic>>[],
required this.onChecked,
this.isExpanded = false,
this.isRTL = false,
this.isSingleSelect = false,
this.initialSelectValue = 0,
}) : super(key: key);