withPoints method

LineChartSeries withPoints(
  1. List<ChartDataPoint> value
)

Replaces LineChartSeries.points with value.

Implementation

LineChartSeries withPoints(List<ChartDataPoint> value) =>
    copyWith(points: value);