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