any method

bool any(
  1. bool test(
    1. K key,
    2. V value
    )
)

Implementation

bool any(bool Function(K key, V value) test) =>
    entries.any((entry) => test(entry.key, entry.value));