any abstract method

Future<bool> any(
  1. bool condition(
    1. String key,
    2. V value
    )
)

Find at least one entries satisified condition.

Implementation

Future<bool> any(bool Function(String key, V value) condition);