startGame method

Future<bool> startGame()

Function to start the game

Implementation

Future<bool> startGame() {
  return ref!.child("inLobby").set(false).then((value) => true);
}