comAtprotoTempCheckSignupQueue function

Future<XRPCResponse<TempCheckSignupQueueOutput>> comAtprotoTempCheckSignupQueue({
  1. required ServiceContext $ctx,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Check accounts location in signup queue.

Implementation

Future<XRPCResponse<TempCheckSignupQueueOutput>>
comAtprotoTempCheckSignupQueue({
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.comAtprotoTempCheckSignupQueue,
  headers: $headers,
  parameters: {...?$unknown},
  to: const TempCheckSignupQueueOutputConverter().fromJson,
);