ChartLine constructor

const ChartLine({
  1. Key? key,
  2. required BoundingBox bounds,
  3. required List<Point> points,
  4. required Color positiveColor,
  5. required Color negativeColor,
  6. required double lineWidth,
  7. required List<double>? dashArray,
})

Implementation

const ChartLine({
  super.key,
  required this.bounds,
  required this.points,
  required this.positiveColor,
  required this.negativeColor,
  required this.lineWidth,
  required this.dashArray,
});