updateRadarStyle method

RadarChartSeries updateRadarStyle(
  1. RadarSeriesStyle update(
    1. 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));