findRecords method

Future<List<SdbIndexRecordSnapshot<K, V, I>>> findRecords(
  1. SdbClient client, {
  2. 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,
  );
}