JWKPublicKey constructor

JWKPublicKey({
  1. String? alg,
  2. String? crv,
  3. String? kid,
  4. String? kty,
  5. String? use,
  6. String? x,
  7. String? y,
  8. int? createdAt,
  9. int? expiredAt,
})

Implementation

JWKPublicKey({
  this.alg,
  this.crv,
  this.kid,
  this.kty,
  this.use,
  this.x,
  this.y,
  this.createdAt,
  this.expiredAt,
});