JwtPayload constructor

JwtPayload({
  1. String? iss,
  2. String? sub,
  3. List<String>? aud,
  4. int? exp,
  5. int? nbf,
  6. int? iat,
  7. String? jti,
  8. String? name,
  9. Map<String, dynamic>? customClaims,
})

Implementation

JwtPayload({
  this.iss,
  this.sub,
  this.aud,
  this.exp,
  this.nbf,
  this.iat,
  this.jti,
  this.name,
  this.customClaims,
});