ValueStreamBuilderCondition<S> typedef
ValueStreamBuilderCondition<S> =
bool Function(S previous, S current)
Signature for the buildWhen
function which takes the previous and
current value
and is responsible for returning a bool which
determines whether to rebuild ValueStreamBuilder with the current value
.
Implementation
typedef ValueStreamBuilderCondition<S> = bool Function(S previous, S current);