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