verifyToken method

Future<String?> verifyToken(
  1. String userName,
  2. String token
)
override

Performs the same checks as verify but without throwing an AssertionError if const Object() is used as the instance token.

This method will be deprecated in a future release.

Implementation

Future<String?> verifyToken(String userName, String token) {
  throw UnimplementedError('has not been implemented.');
}