JwtVerifier constructor
JwtVerifier({
- required JwtOptions options,
- Client? httpClient,
- JwtClaimsValidator? validateClaims,
Creates a JwtVerifier with the given options and optional
httpClient.
Implementation
JwtVerifier({
required JwtOptions options,
http.Client? httpClient,
this.validateClaims,
}) : _options = options,
_httpClient = httpClient ?? http.Client();