shufflePlayers method

GenericGame shufflePlayers()

Shuffles the player list, and resets the currentPlayerIndex to the first

Implementation

GenericGame shufflePlayers() => copyWith(
      players: players.shuffle(),
      currentPlayerIndex: 0,
    );