copyWith method
Implementation
TaskSolutionAnswersItem copyWith({
dynamic answer,
TaskSolutionAnswersQuestion? question,
}) {
return TaskSolutionAnswersItem(
answer: answer ?? this.answer,
question: question ?? this.question,
);
}
TaskSolutionAnswersItem copyWith({
dynamic answer,
TaskSolutionAnswersQuestion? question,
}) {
return TaskSolutionAnswersItem(
answer: answer ?? this.answer,
question: question ?? this.question,
);
}