playAll static method

void playAll()

playAll play all the players

Implementation

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