requestAccountDelete method

Future<XRPCResponse<EmptyData>> requestAccountDelete({
  1. Map<String, String>? $unknown,
  2. Map<String, String>? $headers,
  3. PostClient? $client,
})

Implementation

Future<XRPCResponse<EmptyData>> requestAccountDelete({
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  PostClient? $client,
}) async =>
    await _ctx.post<EmptyData>(
      ns.comAtprotoServerRequestAccountDelete,
      headers: $headers,
      client: $client,
    );