firstKeyWhere method

  1. @override
Future<K?> firstKeyWhere(
  1. bool condition(
    1. K key,
    2. T value
    )
)

Returns the first key for the given condition.

Implementation

@override
Future<K?> firstKeyWhere(bool Function(K key, T value) condition) =>
    _executeRead(() => _nativeBox.firstKeyWhere(condition));