deleteAccount method
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,
);