enableAccountInvites method
Re-enable an account's ability to receive invite codes.
Implementation
Future<XRPCResponse<EmptyData>> enableAccountInvites({
required String account,
String? note,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoAdminEnableAccountInvites(
account: account,
note: note,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);