JWKSKeysInner constructor

JWKSKeysInner({
  1. required String kid,
  2. required String alg,
  3. required String use,
  4. required JWKSKeysInnerKtyEnum kty,
  5. required String crv,
  6. required String x,
  7. List<String> x5c = const [],
  8. String? x5t,
  9. String? x5tHashS256,
  10. String? x5u,
  11. required String y,
  12. required String n,
  13. required String e,
  14. required String d,
  15. required String p,
  16. required String q,
  17. String? dp,
  18. String? dq,
  19. String? qi,
  20. required String k,
})

Returns a new JWKSKeysInner instance.

Implementation

JWKSKeysInner({
  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,
  required this.y,
  required this.n,
  required this.e,
  required this.d,
  required this.p,
  required this.q,
  this.dp,
  this.dq,
  this.qi,
  required this.k,
});