toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final algorithm = this.algorithm;
final cryptoKeyVersion = this.cryptoKeyVersion;
final importJob = this.importJob;
final rsaAesWrappedKey = this.rsaAesWrappedKey;
final trustedWrappingEnabled = this.trustedWrappingEnabled;
final wrappedKey = this.wrappedKey;
return {
'algorithm': ?algorithm,
'cryptoKeyVersion': ?cryptoKeyVersion,
'importJob': ?importJob,
'rsaAesWrappedKey': ?rsaAesWrappedKey,
'trustedWrappingEnabled': ?trustedWrappingEnabled,
'wrappedKey': ?wrappedKey,
};
}