withPoints method

DonutChartSeries withPoints(
  1. List<ChartDataPoint> value
)

Replaces DonutChartSeries.points with value.

Implementation

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