refreshSession method

Future<XRPCResponse<ServerRefreshSessionOutput>> refreshSession({
  1. String? $service,
  2. Map<String, String>? $headers,
})

Refresh an authentication session. Requires auth using the 'refreshJwt' (not the 'accessJwt').

Implementation

Future<XRPCResponse<ServerRefreshSessionOutput>> refreshSession({
  String? $service,
  Map<String, String>? $headers,
}) async => await comAtprotoServerRefreshSession(
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
);