Returns true if any elements match the predicate.
true
final hasEven = IntStream.range(1, 5) .anyMatch((n) => n % 2 == 0); // true
bool anyMatch(bool Function(int) predicate);