GraphView constructor

GraphView({
  1. Key? key,
  2. required Graph graph,
  3. required Algorithm algorithm,
  4. Paint? paint,
  5. required NodeWidgetBuilder builder,
  6. bool animated = true,
})

Implementation

GraphView(
    {Key? key, required this.graph, required this.algorithm, this.paint, required this.builder, this.animated = true})
    : super(key: key);