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