whereNot method Null safety

Iterable<MapEntry<K, V>> whereNot(
  1. 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));