stopAll method

void stopAll()

Implementation

void stopAll() {
  for (var player in players.values) {
    player.stop();
  }
  _stopAction?.call();
}