TournamentDetails constructor

const TournamentDetails({
  1. required String idTournament,
  2. String? name,
  3. String? town,
  4. String? longName,
  5. DateTime? dateStart,
  6. DateTime? dateEnd,
  7. String? tourCount,
  8. String? tourQuestions,
  9. String? tourQuesPerTour,
  10. String? questionsTotal,
  11. String? typeName,
  12. String? mainPaymentValue,
  13. String? mainPaymentCurrency,
  14. String? discountedPaymentValue,
  15. String? discountedPaymentCurrency,
  16. String? discountedPaymentReason,
  17. String? tournamentInRating,
  18. DateTime? dateRequestsAllowedTo,
  19. String? comment,
  20. String? siteUrl,
  21. String? archive,
  22. DateTime? dateArchivedAt,
  23. List<String>? dbTags,
})

Implementation

const TournamentDetails({
  required this.idTournament,
  this.name,
  this.town,
  this.longName,
  this.dateStart,
  this.dateEnd,
  this.tourCount,
  this.tourQuestions,
  this.tourQuesPerTour,
  this.questionsTotal,
  this.typeName,
  this.mainPaymentValue,
  this.mainPaymentCurrency,
  this.discountedPaymentValue,
  this.discountedPaymentCurrency,
  this.discountedPaymentReason,
  this.tournamentInRating,
  this.dateRequestsAllowedTo,
  this.comment,
  this.siteUrl,
  this.archive,
  this.dateArchivedAt,
  this.dbTags,
});