reviveJwt method
Shorthand for authenticating via a JWT string.
Implementation
Future<AngelAuthResult> reviveJwt(String token,
    {String authEndpoint = '/auth'}) {
  return authenticate(
      type: 'token',
      credentials: {'token': token},
      authEndpoint: authEndpoint);
}