// withArtist is Artist.
let player = SystemMusicPlayer.shared
player.queue = [withArtist.fullAlbums!.first!]
player.state.shuffleMode = .songs
try await player.play()
I can't set the shuffle mode with the above code.
I would like to know how to set it.