checkSignupQueue method

Future<XRPCResponse<CheckSignupQueueOutput>> checkSignupQueue({
  1. Map<String, String>? $unknown,
  2. Map<String, String>? $headers,
  3. GetClient? $client,
})

Implementation

Future<XRPCResponse<CheckSignupQueueOutput>> checkSignupQueue({
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  GetClient? $client,
}) async =>
    await _ctx.get<CheckSignupQueueOutput>(
      ns.comAtprotoTempCheckSignupQueue,
      headers: $headers,
      to: const CheckSignupQueueOutputConverter().fromJson,
      client: $client,
    );