Returns true if any entry satisfies the predicate.
predicate
bool any(bool Function(K key, V value) predicate) { for (var entry in entries) { if (predicate(entry.key, entry.value)) return true; } return false; }