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