stop method

dynamic stop()

Implementation

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