Jwk constructor

Jwk({
  1. required String kty,
  2. required String crv,
  3. required String x,
  4. String? d,
  5. String? y,
})

Constructs an instance of Jwk.

Implementation

Jwk({required this.kty, required this.crv, required this.x, this.d, this.y});