comAtprotoTempAddReservedHandle function

Future<XRPCResponse<EmptyData>> comAtprotoTempAddReservedHandle({
  1. required String handle,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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},
);