newRound method

Future<bool> newRound(
  1. PlayerID playerID,
  2. GameCode code
)

Sends a new round event to the game server

Implementation

Future<bool> newRound(PlayerID playerID, GameCode code) => sendEvent(
    playerID, code, GenericEvent.readyNextRound(playerID).asGameEvent);