emitsAnyOf<S> function

Matcher emitsAnyOf<S>(
  1. List<S> expectedStates
)

Matches when a Velo notifier emits any of the expected states.

Implementation

Matcher emitsAnyOf<S>(List<S> expectedStates) =>
    VeloMatchers.emitsAnyOf<S>(expectedStates);