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