deleteRecords method
Future<void>
deleteRecords({
- SdbBoundaries<
K> ? boundaries, - int? offset,
- int? limit,
- bool? descending,
- 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,
),
);