getTokenResponse method

Future<TokenResponse?> getTokenResponse(
  1. [bool forceRefresh = false]
)

Retrieves the token response obtained during the authorization process.

Note: Do not call this method before calling authorize().

Implementation

Future<TokenResponse?> getTokenResponse([bool forceRefresh = false]) async {
  return await credential?.getTokenResponse(forceRefresh);
}