open method

Future<void> open(
  1. Playable playable, {
  2. bool play = true,
})

Implementation

Future<void> open(
  Playable playable, {
  bool play = true,
}) {
  throw UnimplementedError(
    '[PlatformPlayer.open] is not implemented',
  );
}