getKeys method

Future<List<K>> getKeys(
  1. DatabaseClient client
)

Find multiple record keys

Returns an empty array if none found.

Implementation

Future<List<K>> getKeys(DatabaseClient client) =>
    sembastQueryRef.store.findKeys(client, finder: sembastQueryRef.finder);