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