pause method

dynamic pause()

Implementation

pause() async {
  for (var player in players) {
    player.pause();
  }
}