JWKSKeysInner constructor
JWKSKeysInner({
- required String kid,
- required String alg,
- required String use,
- required JWKSKeysInnerKtyEnum kty,
- required String crv,
- required String x,
- List<
String> x5c = const [], - String? x5t,
- String? x5tHashS256,
- String? x5u,
- required String y,
- required String n,
- required String e,
- required String d,
- required String p,
- required String q,
- String? dp,
- String? dq,
- String? qi,
- 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,
});