whereValue method

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

Implementation

Map<K, V> whereValue(bool Function(V value) f) =>
    {...where((key, value) => f(value))};