none method

bool none(
  1. bool test(
    1. T element
    )
)

Returns true when no element satisfies test.

Implementation

bool none(bool Function(T element) test) => !any(test);