comAtprotoTempAddReservedHandle function
Add a handle to the set of reserved handles.
Implementation
Future<XRPCResponse<EmptyData>> comAtprotoTempAddReservedHandle({
required String handle,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.comAtprotoTempAddReservedHandle,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'handle': handle},
);