emitsInOrder<S> static method
Matches when a Velo notifier emits the expected states in order.
Implementation
static Matcher emitsInOrder<S>(List<S> expectedStates) {
ArgumentError.checkNotNull(expectedStates, 'expectedStates');
return _EmitsInOrderMatcher<S>(expectedStates);
}