Removes a token for a user
Future<void> removeToken(String userId) async { _tokens.remove(userId); _expiryTimes.remove(userId); print('Token removed for user: $userId'); }