predicateWithAngel function
Returns an AngelMatcher that uses an arbitrary function that returns true or false for the actual value.
Analogous to the synchronous predicate matcher.
Implementation
AngelMatcher predicateWithAngel(
FutureOr<bool> Function(String, Object, Angel) f,
[String description = 'satisfies function']) =>
_PredicateWithAngel(f, description);