VerifyOptions constructor

const VerifyOptions({
  1. String? iss,
  2. bool exp = true,
  3. bool nbf = true,
  4. bool iat = true,
})

Implementation

const VerifyOptions({
  this.iss,
  this.exp = true,
  this.nbf = true,
  this.iat = true,
});