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 wrappedKey = this.wrappedKey;
return {
'algorithm': ?algorithm,
'cryptoKeyVersion': ?cryptoKeyVersion,
'importJob': ?importJob,
'rsaAesWrappedKey': ?rsaAesWrappedKey,
'wrappedKey': ?wrappedKey,
};
}