Grading constructor
Grading({
- CorrectAnswers? correctAnswers,
- Feedback? generalFeedback,
- int? pointValue,
- Feedback? whenRight,
- Feedback? whenWrong,
Implementation
Grading({
this.correctAnswers,
this.generalFeedback,
this.pointValue,
this.whenRight,
this.whenWrong,
});