refreshSession method

  1. @override
Future<Credentials> refreshSession(
  1. RefreshTokenSecret secret, {
  2. bool reconnect = true,
})
override

Refreshes the current AccessToken.

Invalidates the provided RefreshToken and returns a new one, which should be used instead.

The renewed Session has its own expiration after renewal, so to renew it again use this method with the new returned RefreshToken (omit using old ones).

If reconnect is true, then applies the retrieved Credentials as the token right away.

Implementation

@override
Future<Credentials> refreshSession(
  RefreshTokenSecret secret, {
  bool reconnect = true,
}) {
  Log.debug('refreshSession($secret)', '$runtimeType');

  return _graphQlProvider.clientGuard.protect(() async {
    final response =
        (await _graphQlProvider.refreshSession(secret)).refreshSession
            as RefreshSession$Mutation$RefreshSession$CreateSessionOk;

    if (reconnect) {
      _graphQlProvider.token = response.accessToken.secret;
      _graphQlProvider.reconnect();
    }

    return response.toModel();
  });
}