JwtPayload constructor

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

Implementation

const JwtPayload({
  this.sub,
  this.iss,
  this.aud,
  this.exp,
  this.nbf,
  this.iat,
  this.jti,
  this.extra = const {},
});