stopAll static method

void stopAll()

stopAll stop all the players

Implementation

static void stopAll() {
  for (var player in players) {
    if (!player.disposed) {
      player.stop();
    }
  }
}