emitsWhere<S> function

Matcher emitsWhere<S>(
  1. bool predicate(
    1. S state
    )
)

Matches when a Velo notifier emits states that satisfy the given predicate.

Implementation

Matcher emitsWhere<S>(bool Function(S state) predicate) =>
    VeloMatchers.emitsWhere<S>(predicate);