I have been testing creating a playlist. I started with:
let playlistDetails = PlaylistDetails(name: "Playlist name")
When calling the createPlaylist(...) function, the playlist is created with a description of "null". Since description is optional as per the documentation, it would be appropriate to not have "null" as the created playlist description.
I have been testing creating a playlist. I started with:
When calling the
createPlaylist(...)function, the playlist is created with a description of "null". Since description is optional as per the documentation, it would be appropriate to not have "null" as the created playlist description.