none method

bool none(
  1. bool predicate(
    1. E element
    )
)

Returns true if no entries match the given predicate or if the collection is empty.

Implementation

bool none(bool Function(E element) predicate) => !any(predicate);