whereValues method
Returns a new Map containing all entries that satisfy test.
The new Map preserves the entry iteration order of the this Map.
Implementation
Map<K, V> whereValues(bool Function(V value) test) =>
MyUtilityExtensionWhere(this).where((_, value) => test(value));