comAtprotoAdminDeleteAccount function
Delete a user account as an administrator.
Implementation
Future<XRPCResponse<EmptyData>> comAtprotoAdminDeleteAccount({
required String did,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.comAtprotoAdminDeleteAccount,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'did': did},
);