setUserToken method

Future<void> setUserToken(
  1. Map<String, dynamic> tokenResponse
)

Authenticates by setting a token tokenResponse needs to be a JWT

Implementation

Future<void> setUserToken(Map<String, dynamic> tokenResponse) async {
  return authenticator.setUserToken(tokenResponse);
}