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