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