emitsWhere<S> static method
Matches when a Velo notifier emits states that satisfy the given predicate.
Implementation
static Matcher emitsWhere<S>(bool Function(S state) predicate) {
ArgumentError.checkNotNull(predicate, 'predicate');
return _EmitsWhereMatcher<S>(predicate);
}