toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final algorithm = this.algorithm;
final keyLength = this.keyLength;
final keyType = this.keyType;
final kind = this.kind;
return {
'algorithm': ?algorithm,
'keyLength': ?keyLength,
'keyType': ?keyType,
'kind': ?kind,
};
}