delete method

Future<XRPCResponse<RepoDeleteRecordOutput>> delete({
  1. required String rkey,
  2. String? swapRecord,
  3. String? swapCommit,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Implementation

Future<XRPCResponse<RepoDeleteRecordOutput>> delete({
  required String rkey,
  String? swapRecord,
  String? swapCommit,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoRepoDeleteRecord(
  repo: _ctx.repo,
  collection: ids.appBskyGraphVerification,
  rkey: rkey,
  swapRecord: swapRecord,
  swapCommit: swapCommit,
  $ctx: _ctx,
  $headers: $headers,
);