setAccessToken method
Set access token to cache
If token is null, removes it from cache
expiresAt is optional expiration timestamp in milliseconds since epoch
Implementation
Future<void> setAccessToken(String? token, {int? expiresAt}) async {
await _setToken(_accessTokenKey, token, expiresAt: expiresAt);
}