deleteRecords method

Future<void> deleteRecords({
  1. SdbBoundaries<K>? boundaries,
  2. int? offset,
  3. int? limit,
  4. bool? descending,
  5. SdbFindOptions<K>? options,
})

Delete records.

Implementation

Future<void> deleteRecords({
  SdbBoundaries<K>? boundaries,
  int? offset,
  int? limit,

  /// Optional descending order
  bool? descending,

  /// New API, supersedes the other parameters
  SdbFindOptions<K>? options,
}) => _impl.deleteRecordsImpl(
  options: sdbFindOptionsMerge(
    options,
    boundaries: boundaries,
    offset: offset,
    limit: limit,
    descending: descending,
  ),
);