AnswerModel constructor
AnswerModel({
- int? id,
- QuestionModel? question,
- UserModel? user,
- String? answer,
Implementation
AnswerModel({
this.id,
this.question,
this.user,
this.answer,
});