matchWithAngel function

AngelMatcher matchWithAngel(
  1. FutureOr<Matcher> f(
    1. Object,
    2. Map,
    3. Angel
    ), [
  2. String description = 'satisfies asynchronously created matcher'
])

Returns an AngelMatcher that applies an asynchronously-created Matcher to the input.

Use this to match values against configuration, injections, etc.

Implementation

AngelMatcher matchWithAngel(FutureOr<Matcher> Function(Object, Map, Angel) f,
        [String description = 'satisfies asynchronously created matcher']) =>
    _MatchWithAngel(f, description);