whereNot method
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));