whereNot method

Map<K, V> whereNot(
  1. bool test(
    1. K key,
    2. V value
    )
)

Returns a new Map containing all entries that do not satisfy test.

The new Map preserves the entry iteration order of the this Map.

Implementation

Map<K, V> whereNot(bool Function(K key, V value) test) =>
    MyUtilityExtensionWhere(this).where((key, value) => !test(key, value));