comAtprotoServerRequestAccountDelete function

Future<XRPCResponse<EmptyData>> comAtprotoServerRequestAccountDelete({
  1. required ServiceContext $ctx,
  2. Map<String, String>? $headers,
})

Initiate a user account deletion via email.

Implementation

Future<XRPCResponse<EmptyData>> comAtprotoServerRequestAccountDelete({
  required ServiceContext $ctx,
  Map<String, String>? $headers,
}) async => await $ctx.post(
  ns.comAtprotoServerRequestAccountDelete,
  headers: {...?$headers},
);