clearTokens static method
Implementation
static Future<void> clearTokens() async {
await _storage.delete(key: _accessTokenKey);
await _storage.delete(key: _refreshTokenKey);
await _storage.delete(key: _deviceKey);
await _storage.delete(key: _idTokenKey);
await _storage.delete(key: _emailKey);
await _storage.delete(key: _userIdKey);
// Clear memory cache
_memoryCache.clear();
}