JWKSKeysInner constructor

JWKSKeysInner({
  1. String? kty,
  2. String? use,
  3. String? alg,
  4. String? kid,
  5. String? n,
  6. String? e,
})

Returns a new JWKSKeysInner instance.

Implementation

JWKSKeysInner({
  this.kty,
  this.use,
  this.alg,
  this.kid,
  this.n,
  this.e,
});