roundPlayerScores property

IList<IMap<PlayerID, double>> roundPlayerScores

Gets the scores for each round for each player based off of allRoundScores

Implementation

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