toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final encryptionStatus = this.encryptionStatus;
final encryptionType = this.encryptionType;
final kmsKeyVersion = this.kmsKeyVersion;
return {
'encryptionStatus': ?encryptionStatus,
'encryptionType': ?encryptionType,
'kmsKeyVersion': ?kmsKeyVersion,
};
}