deleteRecordInBulk method
Implementation
Future<core.XRPCResponse<core.EmptyData>> deleteRecordInBulk({
required List<core.AtUri> uris,
bool? validate,
String? swapCommitCid,
}) async =>
await applyWrites(
actions: uris
.map((e) => BatchAction.delete(data: DeleteAction(uri: e)))
.toList(),
validate: validate,
swapCommitCid: swapCommitCid,
);