updateShadow method

PolarColumnStyle updateShadow(
  1. PolarColumnShadowStyle update(
    1. 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));