FlexibleTreeView<T> constructor

const FlexibleTreeView<T>({
  1. Key? key,
  2. required List<TreeNode<T>> nodes,
  3. double nodeWidth = 300,
  4. bool scrollable = true,
  5. NodeItemBuilder<T>? nodeItemBuilder,
  6. NodeItemBackground<T>? nodeItemBackground,
  7. bool showLines = false,
  8. Color? lineColor,
  9. double indent = 16,
  10. NodeItemBuilder<T>? originalNodeItemBuilder,
  11. WillReorder<T>? willRecorder,
  12. OnReorder<T>? onReorder,
})

Implementation

const FlexibleTreeView(
    {Key? key,
    required this.nodes,
    this.nodeWidth = 300,
    this.scrollable = true,
    this.nodeItemBuilder,
    this.nodeItemBackground,
    this.showLines = false,
    this.lineColor,
    this.indent = 16,
    this.originalNodeItemBuilder,
    this.willRecorder,
    this.onReorder})
    : super(key: key);