deleteRecord method
Implementation
Future<core.XRPCResponse<core.EmptyData>> deleteRecord({
required core.AtUri uri,
String? swapRecordCid,
String? swapCommitCid,
}) async =>
await _ctx.post<core.EmptyData>(
ns.comAtprotoRepoDeleteRecord,
body: {
'repo': _ctx.session?.did,
'collection': uri.collection.toString(),
'rkey': uri.rkey,
'swapRecord': swapRecordCid,
'swapCommit': swapCommitCid
},
);