JWKSRsaPublicKey constructor

JWKSRsaPublicKey({
  1. required String kid,
  2. required String alg,
  3. required String use,
  4. required JWKSRsaPublicKeyKtyEnum kty,
  5. required String n,
  6. required String e,
  7. List<String> x5c = const [],
  8. String? x5t,
  9. String? x5tHashS256,
  10. String? x5u,
})

Returns a new JWKSRsaPublicKey instance.

Implementation

JWKSRsaPublicKey({
  required this.kid,
  required this.alg,
  required this.use,
  required this.kty,
  required this.n,
  required this.e,
  this.x5c = const [],
  this.x5t,
  this.x5tHashS256,
  this.x5u,
});