matchWithAngelUnary function

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

Calls matchWithAngel without the initial two parameters.

Implementation

AngelMatcher matchWithAngelUnary(FutureOr<Matcher> Function(Angel) f,
        [String description = 'satisfies asynchronously created matcher']) =>
    matchWithAngelBinary((_, app) => f(app));