remove method

Future<void> remove(
  1. int index
)

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

Implementation

Future<void> remove(int index) async {
  return platform?.remove(index);
}