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 Map<double, Color>? colors,
  7. required double lineWidth,
  8. required List<double>? dashArray,
  9. required double? smoothness,
})

Implementation

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