JWK.from constructor

JWK.from({
  1. required String kty,
  2. required String x,
  3. required String y,
  4. required String crv,
  5. String? d,
  6. bool? ext,
  7. List<String>? key_opts,
})

Implementation

JWK.from({
  required this.kty,
  required this.x,
  required this.y,
  required this.crv,
  this.d,
  this.ext,
  this.key_opts,
});