playerRoundScores property

IMap<PlayerID, IList<double>> playerRoundScores

Gets the scores for each player for all rounds based off of allRoundScores

Implementation

IMap<PlayerID, IList<double>> get playerRoundScores => IMap({
      for (var p = 0; p < players.length; p++)
        players[p].id: IList(allRoundScores.map((rs) => rs[p])),
    });