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