refreshSession abstract method

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

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

Future<Credentials> refreshSession(
  RefreshTokenSecret secret, {
  bool reconnect,
});