predicateWithContext function
Returns a ContextAwareMatcher for the given predicate.
Implementation
ContextAwareMatcher predicateWithContext(
bool Function(Object, String, Map, Map) f,
[String description = 'satisfies function']) {
return _PredicateWithContext(f, description);
}