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