JSONWebKey constructor

JSONWebKey({
  1. Algorithm alg,
  2. String crv,
  3. String d,
  4. String dp,
  5. String dq,
  6. String e,
  7. String kid,
  8. KeyType kty,
  9. String n,
  10. String p,
  11. String q,
  12. String qi,
  13. String use,
  14. String x,
  15. List<String> x5c,
  16. String x5t,
  17. String x5t_S256,
  18. String y,
})

Implementation

JSONWebKey(
    {this.alg,
    this.crv,
    this.d,
    this.dp,
    this.dq,
    this.e,
    this.kid,
    this.kty,
    this.n,
    this.p,
    this.q,
    this.qi,
    this.use,
    this.x,
    this.x5c,
    this.x5t,
    this.x5t_S256,
    this.y});