findRecordKeys method
Future<List<SdbRecordKey<K, V> > >
findRecordKeys({
- SdbBoundaries<
K> ? boundaries, - SdbFilter? filter,
- int? offset,
- int? limit,
- bool? descending,
- SdbFindOptions<
K> ? options,
Find record keys.
Implementation
Future<List<SdbRecordKey<K, V>>> findRecordKeys({
SdbBoundaries<K>? boundaries,
/// Optional filter, performed in memory
SdbFilter? filter,
int? offset,
int? limit,
bool? descending,
/// New API, supercedes the other parameters
SdbFindOptions<K>? options,
}) => impl.findRecordKeysImpl(
options: sdbFindOptionsMerge(
options,
boundaries: boundaries,
filter: filter,
offset: offset,
limit: limit,
descending: descending,
),
);