findRecordKeys method

Future<List<SdbRecordKey<K, V>>> findRecordKeys({
  1. SdbBoundaries<K>? boundaries,
  2. int? offset,
  3. int? limit,
  4. bool? descending,
})

Find record keys.

Implementation

Future<List<SdbRecordKey<K, V>>> findRecordKeys({
  SdbBoundaries<K>? boundaries,
  int? offset,
  int? limit,

  /// Optional descending order
  bool? descending,
}) => _impl.findRecordKeysImpl(
  boundaries: boundaries,
  offset: offset,
  limit: limit,
  descending: descending,
);