matchWithAngelBinary function

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

Calls matchWithAngel without the initial parameter.

Implementation

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