findRecordKeys method
Future<List<SdbRecordKey<K, V> > >
findRecordKeys(
- SdbClient client, {
- SdbBoundaries<
K> ? boundaries, - int? offset,
- int? limit,
- bool? descending,
- SdbFindOptions<
K> ? options,
Find records.
Implementation
Future<List<SdbRecordKey<K, V>>> findRecordKeys(
SdbClient client, {
SdbBoundaries<K>? boundaries,
int? offset,
int? limit,
bool? descending,
/// New API, supersedes the other parameters
SdbFindOptions<K>? options,
}) => impl.findRecordKeysImpl(
client,
options: sdbFindOptionsMerge(
boundaries: boundaries,
options,
limit: limit,
offset: offset,
descending: descending,
),
);