getAccessToken method
Gets the current access token
Returns null if not authenticated or token is expired.
Implementation
String? getAccessToken() {
return isAuthenticated() ? _currentTokens!.accessToken : null;
}
Gets the current access token
Returns null if not authenticated or token is expired.
String? getAccessToken() {
return isAuthenticated() ? _currentTokens!.accessToken : null;
}