toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final algorithm = this.algorithm;
final name = this.name;
final pem = this.pem;
final pemCrc32c = this.pemCrc32c;
final protectionLevel = this.protectionLevel;
final publicKey = this.publicKey;
final publicKeyFormat = this.publicKeyFormat;
return {
'algorithm': ?algorithm,
'name': ?name,
'pem': ?pem,
'pemCrc32c': ?pemCrc32c,
'protectionLevel': ?protectionLevel,
'publicKey': ?publicKey,
'publicKeyFormat': ?publicKeyFormat,
};
}