checkAccountStatus method

Future<XRPCResponse<AccountStatus>> checkAccountStatus({
  1. Map<String, String>? headers,
})

Implementation

Future<core.XRPCResponse<AccountStatus>> checkAccountStatus({
  Map<String, String>? headers,
}) async =>
    await _ctx.get(
      ns.comAtprotoServerCheckAccountStatus,
      headers: headers,
      to: AccountStatus.fromJson,
    );