remove method

void remove(
  1. int index
)

Removes Media from the Playlist at a specific index.

Implementation

void remove(int index) {
  PlayerFFI.remove(
    id,
    index,
  );
}