move method

void move(
  1. int initialIndex,
  2. int finalIndex
)

Moves Media already present in the Playlist of the Player from initialIndex to finalIndex.

Implementation

void move(int initialIndex, int finalIndex) {
  PlayerFFI.move(
    id,
    initialIndex,
    finalIndex,
  );
}