JWKSEcdsaPublicKey constructor

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

Returns a new JWKSEcdsaPublicKey instance.

Implementation

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