Fix null-aware marker usage

This commit is contained in:
Janez T
2026-03-01 14:04:41 +01:00
parent 8a91e7bf89
commit be7fe6c4b0
5 changed files with 13 additions and 16 deletions

View File

@@ -26,7 +26,7 @@ class MessageDestinationPreferences {
return {
'type': type,
if (publicKey != null) 'publicKey': publicKey,
'publicKey': ?publicKey,
};
}