none method

bool none(
  1. bool predicate(
    1. T
    )
)

Returns true if no elements satisfy predicate.

Implementation

bool none(bool Function(T) predicate) => !any(predicate);