none method

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

Returns true if none of the elements match the given predicate.

Implementation

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