JwtVerifier constructor

JwtVerifier({
  1. required JwtOptions options,
  2. Client? httpClient,
  3. 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();