any method
Checks whether any entry of this map satisfies test
.
Implementation
bool any(bool Function(K key, V value) test) {
return entries.any((entry) => test(entry.key, entry.value));
}
Checks whether any entry of this map satisfies test
.
bool any(bool Function(K key, V value) test) {
return entries.any((entry) => test(entry.key, entry.value));
}