updatePolarStyle method

PolarColumnChartSeries updatePolarStyle(
  1. PolarColumnStyle update(
    1. PolarColumnStyle current
    )
)

Rebuilds PolarColumnChartSeries.polarStyle from its current value.

update receives the current PolarColumnStyle and returns the replacement, so nested configuration is edited without re-stating the enclosing config.

Implementation

PolarColumnChartSeries updatePolarStyle(
  PolarColumnStyle Function(PolarColumnStyle current) update,
) => copyWith(polarStyle: update(polarStyle));