toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final encryptionEntityId = this.encryptionEntityId;
final encryptionEntityType = this.encryptionEntityType;
final encryptionSource = this.encryptionSource;
final kind = this.kind;
return {
'encryptionEntityId': ?encryptionEntityId,
'encryptionEntityType': ?encryptionEntityType,
'encryptionSource': ?encryptionSource,
'kind': ?kind,
};
}