TeamTournament constructor

const TeamTournament({
  1. int? idTeam,
  2. int? idSeason,
  3. List<String>? tournaments,
})

Implementation

const TeamTournament({
  this.idTeam,
  this.idSeason,
  this.tournaments,
});