toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alg = this.alg;
final crv = this.crv;
final e = this.e;
final kid = this.kid;
final kty = this.kty;
final n = this.n;
final use = this.use;
final x = this.x;
final y = this.y;
return {
'alg': ?alg,
'crv': ?crv,
'e': ?e,
'kid': ?kid,
'kty': ?kty,
'n': ?n,
'use': ?use,
'x': ?x,
'y': ?y,
};
}