checkAccountStatus method

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

Returns the status of an account, especially as pertaining to import or recovery. Can be called many times over the course of an account migration. Requires auth and can only be called pertaining to oneself.

https://atprotodart.com/docs/lexicons/com/atproto/server/checkAccountStatus

Implementation

Future<XRPCResponse<CheckAccountStatusOutput>> checkAccountStatus({
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  GetClient? $client,
}) async =>
    await _ctx.get<CheckAccountStatusOutput>(
      ns.comAtprotoServerCheckAccountStatus,
      headers: $headers,
      to: const CheckAccountStatusOutputConverter().fromJson,
      client: $client,
    );