toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final ciphertext = this.ciphertext;
final ciphertextCrc32c = this.ciphertextCrc32c;
final name = this.name;
final protectionLevel = this.protectionLevel;
final verifiedAdditionalAuthenticatedDataCrc32c =
this.verifiedAdditionalAuthenticatedDataCrc32c;
final verifiedPlaintextCrc32c = this.verifiedPlaintextCrc32c;
return {
'ciphertext': ?ciphertext,
'ciphertextCrc32c': ?ciphertextCrc32c,
'name': ?name,
'protectionLevel': ?protectionLevel,
'verifiedAdditionalAuthenticatedDataCrc32c':
?verifiedAdditionalAuthenticatedDataCrc32c,
'verifiedPlaintextCrc32c': ?verifiedPlaintextCrc32c,
};
}