Returns true if no elements match the predicate.
true
final noNegative = IntStream.range(1, 5) .noneMatch((n) => n < 0); // true
bool noneMatch(bool Function(int) predicate);