whereValue method

Map<K, V> whereValue(
  1. bool f(
    1. V value
    )
)

Implementation

Map<K, V> whereValue(bool Function(V value) f) =>
    Map<K, V>.fromEntries(entries.where((e) => f(e.value)));