QuestionModel constructor

QuestionModel({
  1. int id = 0,
  2. String question = "",
  3. String audioUrl = "",
})

Implementation

QuestionModel({
  this.id = 0,
  this.question = "",
  this.audioUrl = "",
});