whereKey method

Map<K, V> whereKey(
  1. bool test(
    1. K key
    )
)

Implementation

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