Skip to content

Commit

Permalink
fix (apparent) typo in the null-aware-elements example (#4107)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfccp authored Oct 4, 2024
1 parent 8e35ba9 commit 57da765
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ final tag = Tag()
'comment': comms!
.asMap()
.map((key, value) => MapEntry<String, Comment>(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'
Expand Down

0 comments on commit 57da765

Please sign in to comment.