AsyncCondition<T> typedef

AsyncCondition<T> = FutureOr<void> Function(Subject<T>)

A callback that asynchronously checks expectations against a subject.

Any expectations may be used within an AsyncCondition callback.

Implementation

typedef AsyncCondition<T> = FutureOr<void> Function(Subject<T>);