storeToken method
Stores a new token with expiration
Implementation
Future<void> storeToken(String userId, String token,
{int expiresIn = 3600}) async {
_tokens[userId] = _TokenInfo(
token: token,
expirationTime: DateTime.now().add(Duration(seconds: expiresIn)),
);
}