Returns true if no elements match the given predicate.
true
predicate
bool none({bool Function(T)? predicate}) => predicate == null ? isEmpty : !any(predicate);