delete method
Future<XRPCResponse<DeleteRecordOutput> >
delete({
- Map<
String, String> ? $headers, - PostClient? $client,
Deletes declaration record.
Implementation
Future<XRPCResponse<DeleteRecordOutput>> delete({
Map<String, String>? $headers,
PostClient? $client,
}) async =>
await _ctx.atproto.repo.deleteRecord(
repo: _ctx.repo,
collection: ns.chatBskyActorDeclaration,
rkey: 'self',
$headers: $headers,
$client: $client,
);