Returns true if no element of this satisfies test.
true
this
test
Example:
[1, 2, 3].none((e) => e > 4); // true [1, 2, 3].none((e) => e > 2); // false
bool none(bool Function(E) test) => !this.any(test);