where method

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

Returns all the entries that satisfy the predicate test.

Implementation

@override
FutureOr<List<MapEntry<K, V>>> where(bool Function(K key, V value) test) =>
    _sharedMap.where(test);