move method

Future<void> move(
  1. int from,
  2. int to
)

Moves the playlist Media at from, so that it takes the place of the Media to.

Implementation

Future<void> move(int from, int to) async {
  return platform?.move(from, to);
}