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