remove method

void remove(
  1. int index
)
inherited

Removes Media from the Playlist at a specific index.

Implementation

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