CancelFlowAnswerPayload constructor

CancelFlowAnswerPayload({
  1. required int questionId,
  2. int? selectedOptionId,
  3. String? freeText,
})

Implementation

CancelFlowAnswerPayload({
  required this.questionId,
  this.selectedOptionId,
  this.freeText,
});