JWT.decode constructor
JWT.decode(
- String token
Decodes a JSON Web Token string.
Implementation
JWT.decode(this.token)
: assert(token.split('.').length == 3, 'Invalid token.');
Decodes a JSON Web Token string.
JWT.decode(this.token)
: assert(token.split('.').length == 3, 'Invalid token.');