TeamDto constructor

TeamDto(
  1. String teamId,
  2. bool won,
  3. int roundsPlayed,
  4. int roundsWon,
  5. int numPoints,
)

Implementation

TeamDto(
    this.teamId, this.won, this.roundsPlayed, this.roundsWon, this.numPoints);