updateTargetMarkerStyle method

PolarColumnChartSeries updateTargetMarkerStyle(
  1. PolarColumnTargetMarkerStyle update(
    1. PolarColumnTargetMarkerStyle current
    )
)

Rebuilds PolarColumnChartSeries.targetMarkerStyle from its current value.

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

Implementation

PolarColumnChartSeries updateTargetMarkerStyle(
  PolarColumnTargetMarkerStyle Function(PolarColumnTargetMarkerStyle current)
  update,
) => copyWith(targetMarkerStyle: update(targetMarkerStyle));