updateRadarStyle method
- RadarSeriesStyle update(
- RadarSeriesStyle current
Rebuilds RadarChartSeries.radarStyle from its current value.
update receives the current RadarSeriesStyle and returns the replacement, so
nested configuration is edited without re-stating the enclosing config.
Implementation
RadarChartSeries updateRadarStyle(
RadarSeriesStyle Function(RadarSeriesStyle current) update,
) => copyWith(radarStyle: update(radarStyle));