Jwk constructor

Jwk({
  1. String? alg,
  2. String? crv,
  3. String? e,
  4. String? kid,
  5. String? kty,
  6. String? n,
  7. String? use,
  8. String? x,
  9. String? y,
})

Implementation

Jwk({
  this.alg,
  this.crv,
  this.e,
  this.kid,
  this.kty,
  this.n,
  this.use,
  this.x,
  this.y,
});