GraphViewWidget<V> constructor

const GraphViewWidget<V>(
  1. Graph<V> graph, {
  2. Key? key,
  3. List<Widget> children = const <Widget>[],
  4. required GraphViewOrientation orientation,
  5. required GraphViewLayoutDelegate<V> layoutDelegate,
})

Implementation

const GraphViewWidget(this.graph,
    {super.key,
    super.children,
    required this.orientation,
    required this.layoutDelegate});