LineChart constructor

const LineChart({
  1. Key? key,
  2. required List<Point> axisPoints,
  3. required List<Point> chartPoints,
  4. required BuildContext context,
  5. String? label,
  6. Color? color,
  7. double? strokeWidth,
  8. StrokeCap? strokeCap,
})

Implementation

const LineChart({
  Key? key,
  required this.axisPoints,
  required this.chartPoints,
  required this.context,
  this.label,
  this.color,
  this.strokeWidth,
  this.strokeCap,
}) : super(key: key);