anyMatch abstract method
Returns whether any elements of this stream match the provided predicate.
Example
final hasEven = GenericStream.of([1, 2, 3, 4, 5])
.anyMatch((n) => n % 2 == 0); // true
Implementation
bool anyMatch(bool Function(T) predicate);