playlistRemove method

Future playlistRemove(
  1. dynamic index
)

remove the song at index or the current song, if index = 'current'

Implementation

Future playlistRemove(index) {
  return command('playlist-remove', [index]);
}