getTokenFromStorage method

Future<AccessTokenResponse?> getTokenFromStorage()

Returns the previously stored Access Token from the storage, if any

Implementation

Future<AccessTokenResponse?> getTokenFromStorage() async {
  return await tokenStorage.getToken(scopes ?? []);
}