FlowGraphView<T> constructor

const FlowGraphView<T>({
  1. Key? key,
  2. required GraphNode<T> root,
  3. Axis direction = Axis.horizontal,
  4. bool centerLayout = false,
  5. bool enabled = true,
  6. required NodeWidgetBuilder<T> builder,
  7. OnSelectChanged<T>? onSelectChanged,
  8. OnEdgeColor<T>? onEdgeColor,
})

Implementation

const FlowGraphView(
    {Key? key,
    required this.root,
    this.direction = Axis.horizontal,
    this.centerLayout = false,
    this.enabled = true,
    required this.builder,
    this.onSelectChanged,
    this.onEdgeColor})
    : super(key: key);