findRecords method
Future<List<SdbIndexRecordSnapshot<K, V, I> > >
findRecords(
- SdbClient client, {
- SdbFindOptions<
I> ? options,
Find all records with this index key.
Implementation
Future<List<SdbIndexRecordSnapshot<K, V, I>>> findRecords(
SdbClient client, {
SdbFindOptions<I>? options,
}) {
return index.findRecords(
client,
boundaries: _boundariesKey,
options: options,
);
}