comAtprotoServerRequestAccountDelete function

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

Initiate a user account deletion via email.

Implementation

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