toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final name = this.name;
final protectionLevel = this.protectionLevel;
final sharedSecret = this.sharedSecret;
final sharedSecretCrc32c = this.sharedSecretCrc32c;
final verifiedCiphertextCrc32c = this.verifiedCiphertextCrc32c;
return {
'name': ?name,
'protectionLevel': ?protectionLevel,
'sharedSecret': ?sharedSecret,
'sharedSecretCrc32c': ?sharedSecretCrc32c,
'verifiedCiphertextCrc32c': ?verifiedCiphertextCrc32c,
};
}