JWKSSymmetricKey constructor

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

Returns a new JWKSSymmetricKey instance.

Implementation

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