deleteAccount method

Future<XRPCResponse<EmptyData>> deleteAccount({
  1. required String did,
  2. required String password,
  3. required String token,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Delete an actor's account with a token and password. Can only be called after requesting a deletion token. Requires auth.

Implementation

Future<XRPCResponse<EmptyData>> deleteAccount({
  required String did,
  required String password,
  required String token,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoServerDeleteAccount(
  did: did,
  password: password,
  token: token,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);