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