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