delete method

Future<XRPCResponse<DeleteRecordOutput>> delete({
  1. Map<String, String>? $headers,
  2. 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,
    );