Grading constructor

Grading({
  1. CorrectAnswers? correctAnswers,
  2. Feedback? generalFeedback,
  3. int? pointValue,
  4. Feedback? whenRight,
  5. Feedback? whenWrong,
})

Implementation

Grading({
  this.correctAnswers,
  this.generalFeedback,
  this.pointValue,
  this.whenRight,
  this.whenWrong,
});