updateValueSummary method

InteractionConfig updateValueSummary(
  1. CartesianValueSummaryConfig update(
    1. 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));