updateRadialBarStyle method

RadialBarChartSeries updateRadialBarStyle(
  1. RadialBarStyle update(
    1. RadialBarStyle current
    )
)

Rebuilds RadialBarChartSeries.radialBarStyle from its current value.

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

Implementation

RadialBarChartSeries updateRadialBarStyle(
  RadialBarStyle Function(RadialBarStyle current) update,
) => copyWith(radialBarStyle: update(radialBarStyle));