JwtExpValidation constructor

JwtExpValidation(
  1. Jwt jwt
)

Implementation

JwtExpValidation(this.jwt) {
  if (_exists() && _isExpired()) {
    throw ExpiredTokenException();
  }
}