where method

Future<List<MapEntry<K, V>>> where(
  1. bool test(
    1. K key,
    2. V value
    )
)

Implementation

Future<List<MapEntry<K, V>>> where(bool Function(K key, V value) test) =>
    then((o) => o.where(test));