PollQuestionModel constructor

PollQuestionModel({
  1. int? id,
  2. String? question,
})

Implementation

PollQuestionModel({
  this.id,
  this.question,
});