SurveyQuestionViewed constructor

const SurveyQuestionViewed({
  1. required String questionId,
  2. String? questionType,
  3. int? itemIndex,
  4. int? itemTotal,
  5. String? blockType,
  6. String? blockId,
  7. bool? isRequired,
  8. String? questionTitle,
})

Implementation

const SurveyQuestionViewed({
  required this.questionId,
  this.questionType,
  this.itemIndex,
  this.itemTotal,
  this.blockType,
  this.blockId,
  this.isRequired,
  this.questionTitle,
});