TournamentAppeal constructor

const TournamentAppeal({
  1. Type? type,
  2. String? questionNumber,
  3. DateTime? issuedAt,
  4. QuestionStatus? status,
  5. String? appeal,
  6. String? comment,
  7. DateTime? resolvedAt,
  8. String? answer,
})

Implementation

const TournamentAppeal({
  this.type,
  this.questionNumber,
  this.issuedAt,
  this.status,
  this.appeal,
  this.comment,
  this.resolvedAt,
  this.answer,
});