getTokenFromStorage method
Returns the previously stored Access Token from the storage, if any
Implementation
Future<AccessTokenResponse?> getTokenFromStorage() async {
return await tokenStorage.getToken(scopes ?? []);
}
Returns the previously stored Access Token from the storage, if any
Future<AccessTokenResponse?> getTokenFromStorage() async {
return await tokenStorage.getToken(scopes ?? []);
}