Stores a token for a user
Future<void> storeToken(String userId, String token) async { _tokens[userId] = token; _expiryTimes[userId] = _extractTokenExpiry(token); print('Token stored for user: $userId'); }