Tree constructor

const Tree({
  1. Widget? title,
  2. required List<TreeNode> nodes,
  3. EdgeInsets? pagePadding,
  4. bool isScrollbarAlwaysShown = true,
  5. bool collapsed = false,
  6. bool showDraggingIndicator = true,
  7. bool allowDragging = false,
  8. TreeController? controller,
  9. Key? key,
})

Implementation

const Tree({
  this.title,
  required this.nodes,
  this.pagePadding,
  this.isScrollbarAlwaysShown = true,
  this.collapsed = false,
  this.showDraggingIndicator = true,
  this.allowDragging = false,
  this.controller,
  super.key,
});