whereValue method

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

Implementation

Map<K, V> whereValue(bool Function(V value) test) => where((k, v) => test(v));