RoundResultDto constructor

RoundResultDto(
  1. int roundNum,
  2. String roundResult,
  3. String roundCeremony,
  4. String winningTeam,
  5. String bombPlanter,
  6. String bombDefuser,
  7. int plantRoundTime,
  8. List<PlayerLocationsDto> playerPlantLocations,
  9. LocationDto plantLocation,
  10. String plantSite,
  11. int defuseRoundTime,
  12. List<PlayerLocationsDto> defusePlayerLocations,
  13. LocationDto defuseLocation,
  14. List<PlayerRoundStatsDto> playerStats,
  15. String roundResultCode,
)

Implementation

RoundResultDto(
    this.roundNum,
    this.roundResult,
    this.roundCeremony,
    this.winningTeam,
    this.bombPlanter,
    this.bombDefuser,
    this.plantRoundTime,
    this.playerPlantLocations,
    this.plantLocation,
    this.plantSite,
    this.defuseRoundTime,
    this.defusePlayerLocations,
    this.defuseLocation,
    this.playerStats,
    this.roundResultCode);