copyWithWrapped method
Implementation
TaskScoresItem copyWithWrapped({
Wrapped<int>? questionId,
Wrapped<num?>? score,
}) {
return TaskScoresItem(
questionId: (questionId != null ? questionId.value : this.questionId),
score: (score != null ? score.value : this.score),
);
}