diff --git a/accepted/future-releases/0323-null-aware-elements/feature-specification.md b/accepted/future-releases/0323-null-aware-elements/feature-specification.md index 31642c744..77bbff22e 100644 --- a/accepted/future-releases/0323-null-aware-elements/feature-specification.md +++ b/accepted/future-releases/0323-null-aware-elements/feature-specification.md @@ -252,8 +252,8 @@ final tag = Tag() 'comment': comms! .asMap() .map((key, value) => MapEntry(value.key, value)), - 'track': Song.numberInAlbum?.toString(), - 'genre': Song.genre, + 'track': ?Song.numberInAlbum?.toString(), + 'genre': ?Song.genre, if (Song.albumArt != null) 'picture': {pic.key: pic}, } ..type = 'ID3'