deleteAccount method
Delete a user account as an administrator.
Implementation
Future<XRPCResponse<EmptyData>> deleteAccount({
required String did,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoAdminDeleteAccount(
did: did,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);