MultipleChoiceRow constructor

MultipleChoiceRow({
  1. Key? key,
  2. required Function func,
  3. required Map answer,
  4. required Map question,
  5. required Map theme,
  6. Function? setSelectedOptions,
  7. Function? setShowNextButton,
  8. Function? setOtherTextInput,
  9. required bool inputError,
  10. required String inputErrorMsg,
  11. Map? euiTheme,
  12. required Function toggleNextButtonBlock,
})

Implementation

MultipleChoiceRow({
  Key? key,
  required this.func,
  required this.answer,
  required this.question,
  required this.theme,
  this.setSelectedOptions,
  this.setShowNextButton,
  this.setOtherTextInput,
  required this.inputError,
  required this.inputErrorMsg,
  this.euiTheme,
  required this.toggleNextButtonBlock,
}) : super(key: key);