Team constructor

const Team({
  1. required String idTeam,
  2. String? name,
  3. String? town,
  4. String? regionName,
  5. String? countryName,
  6. String? tournamentsThisSeason,
  7. String? tournamentsTotal,
  8. String? comment,
})

Implementation

const Team({
  required this.idTeam,
  this.name,
  this.town,
  this.regionName,
  this.countryName,
  this.tournamentsThisSeason,
  this.tournamentsTotal,
  this.comment,
});