AnswerModel constructor

AnswerModel({
  1. int? id,
  2. QuestionModel? question,
  3. UserModel? user,
  4. String? answer,
})

Implementation

AnswerModel({
  this.id,
  this.question,
  this.user,
  this.answer,
});