validateToken abstract method

Future<bool> validateToken(
  1. String token
)

Checks if the given token is valid or not.

Returns a Future that resolves to true if the token is valid, false otherwise.

Implementation

Future<bool> validateToken(String token);