NiceSurveyQuestion constructor

const NiceSurveyQuestion({
  1. required String id,
  2. required String question,
  3. NiceSurveyQuestionType type = NiceSurveyQuestionType.text,
  4. List<String>? options,
})

Implementation

const NiceSurveyQuestion({
  required this.id,
  required this.question,
  this.type = NiceSurveyQuestionType.text,
  this.options,
});