accessToken property

String? accessToken

Saves the token that your application sends to authorize a Google API request.

Implementation

String? get accessToken => _store.get(_getKey(_kAccessTokenKey));
void accessToken=(String? value)

Implementation

set accessToken(String? value) => _setValue(_kAccessTokenKey, value);