toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'secretForeignKeys'] = secretForeignKeys;
json[r'cryptedForeignKeys'] = cryptedForeignKeys;
json[r'delegations'] = delegations;
json[r'encryptionKeys'] = encryptionKeys;
if (encryptedSelf != null) {
json[r'encryptedSelf'] = encryptedSelf;
}
return json;
}