getKey method

Future<K?> getKey(
  1. DatabaseClient client
)

Find first record key matching the query.

Returns null if none found.

Implementation

Future<K?> getKey(DatabaseClient client) =>
    sembastQueryRef.store.findKey(client, finder: sembastQueryRef.finder);