playlistMove method

Future playlistMove(
  1. dynamic index1,
  2. dynamic index2
)

Moves the song/video on position index1 to position index2

Implementation

Future playlistMove(index1, index2) {
  return command('playlist-move', [index1, index2]);
}