whereNot method

*<Null safety>*

Iterable<T> whereNot (bool test(T element))

Implementation

Iterable<T> whereNot(bool Function(T element) test) =>
    where((element) => !test(element));