delete method
Future<void>
delete(
- SdbClient client, {
- SdbBoundaries<
K> ? boundaries, - int? offset,
- int? limit,
- bool? descending,
- SdbFindOptions<
K> ? options,
Delete records.
Implementation
Future<void> delete(
SdbClient client, {
SdbBoundaries<K>? boundaries,
int? offset,
int? limit,
bool? descending,
/// New API, supersedes the other parameters
SdbFindOptions<K>? options,
}) => impl.deleteImpl(
client,
options: sdbFindOptionsMerge(
options,
boundaries: boundaries,
limit: limit,
offset: offset,
descending: descending,
),
);