matchAsync function
Returns an AngelMatcher that asynchronously resolves a feature
, builds a matcher
, and executes it.
Implementation
AngelMatcher matchAsync(
FutureOr<Matcher> Function(String, Object) matcher,
FutureOr Function() feature, [
String description = 'satisfies asynchronously created matcher',
]) {
return _MatchAsync(matcher, feature, description);
}