remove method

void remove(
  1. int index
)

Removes the Media at specified index from the Player's queue.

Implementation

void remove(int index) {
  LWM.bindings.PlayerRemove(
    id,
    index,
  );
}