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