expectLastStatusIs<T extends StreamStatus<BlocState> > method
Asserts that the last emitted status is of the given type.
Implementation
void expectLastStatusIs<T extends StreamStatus>([String? reason]) {
expect(lastStatus, isA<T>(), reason: reason);
}