none method

bool none(
  1. ConditionTester<T> test
)

Checks if no element matches the predicate.

Implementation

bool none(ConditionTester<T> test) => !any(test);