QuestionnaireOption constructor

QuestionnaireOption({
  1. required String name,
  2. required String id,
  3. String? response,
  4. String? data,
  5. DateTime? dateTime,
  6. String? patientId,
  7. bool isEdit = false,
})

Implementation

QuestionnaireOption({
  required this.name,
  required this.id,
  this.response,
  this.data,
  this.dateTime,
  this.patientId,
  this.isEdit = false,
});