JWKSEd25519PublicKey constructor

JWKSEd25519PublicKey({
  1. required String kid,
  2. required String alg,
  3. required String use,
  4. required JWKSEd25519PublicKeyKtyEnum kty,
  5. required JWKSEd25519PublicKeyCrvEnum crv,
  6. required String x,
  7. List<String> x5c = const [],
  8. String? x5t,
  9. String? x5tHashS256,
  10. String? x5u,
})

Returns a new JWKSEd25519PublicKey instance.

Implementation

JWKSEd25519PublicKey({
  required this.kid,
  required this.alg,
  required this.use,
  required this.kty,
  required this.crv,
  required this.x,
  this.x5c = const [],
  this.x5t,
  this.x5tHashS256,
  this.x5u,
});