open method
Implementation
Future<void> open({
required List<String> medias,
bool play = true,
bool evictCache = true,
}) async {
await player.open(
Playlist(
medias.map((e) => Media(e)).toList().cast<Media>(),
),
play: play,
// evictExtrasCache: evictCache,
);
return;
}