whereNot method Null safety
- bool test(
- T element
The elements that do not satisfy test
.
Implementation
Iterable<T> whereNot(bool Function(T element) test) =>
where((element) => !test(element));
The elements that do not satisfy test
.
Iterable<T> whereNot(bool Function(T element) test) =>
where((element) => !test(element));