GraphPainter constructor

GraphPainter({
  1. required GraphOffset focusPoint,
  2. required Graph graph,
  3. required GraphController controller,
})

Creates a GraphPainter with the specified focusPoint, graph, and controller.

Implementation

GraphPainter({
  required this.focusPoint,
  required this.graph,
  required this.controller,
});