whereNot method Null safety
- EntryPredicate<
K, V> test
Returns a new lazy Iterable
with all entries that do NOT satisfy the predicate test
.
Implementation
Iterable<MapEntry<K, V>> whereNot(EntryPredicate<K, V> test) =>
where((k, v) => !test(k, v));