KillsDto constructor

KillsDto(
  1. int timeSinceGameStartMillis,
  2. int timeSinceRoundStartMillis,
  3. String killer,
  4. String victim,
  5. LocationDto victimLocation,
  6. List<String> assistants,
  7. List<PlayerLocationsDto> playerLocations,
  8. List<FinishingDamageDto> finishingDamage,
)

Implementation

KillsDto(
    this.timeSinceGameStartMillis,
    this.timeSinceRoundStartMillis,
    this.killer,
    this.victim,
    this.victimLocation,
    this.assistants,
    this.playerLocations,
    this.finishingDamage);