invalidateToken abstract method

Future<void> invalidateToken(
  1. String token
)

Invalidates a token (single device logout)

token The token to invalidate

For JWT drivers: Blacklists access token and invalidates associated refresh token For Token drivers: Deletes the access token

Implementation

Future<void> invalidateToken(String token);