anyEntry method

bool anyEntry(
  1. bool test(
    1. MapEntry<K, V>
    )
)

Checks whether any entry of this iterable satisfies test.

Implementation

bool anyEntry(bool Function(MapEntry<K, V>) test) => _m.anyEntry(test);