any method

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

Checks whether any key-value pair of this map satisfies test.

Implementation

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