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