ChartCursor constructor

const ChartCursor({
  1. Key? key,
  2. required BoundingBox bounds,
  3. required CursorBuilder builder,
  4. required Point point,
})

Implementation

const ChartCursor({
  super.key,
  required this.bounds,
  required this.builder,
  required this.point,
});