TreeViewChild constructor

TreeViewChild({
  1. required Widget parent,
  2. required List<Widget> children,
  3. bool? startExpanded,
  4. VoidCallback? onTap,
  5. Key? key,
})

Implementation

TreeViewChild({
  required this.parent,
  required this.children,
  this.startExpanded,
  this.onTap,
  Key? key,
}) : super(key: key);