refreshSession abstract method
- RefreshTokenSecret secret, {
- 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,
});