getServiceAuth method

Future<XRPCResponse<ServiceAuthToken>> getServiceAuth({
  1. required String aud,
})

Implementation

Future<core.XRPCResponse<ServiceAuthToken>> getServiceAuth({
  required String aud,
}) async =>
    await _ctx.get(
      ns.comAtprotoServerGetServiceAuth,
      parameters: {
        'aud': aud,
      },
      to: ServiceAuthToken.fromJson,
    );