YesOrNo constructor

const YesOrNo({
  1. Key? key,
  2. required Function func,
  3. required Map answer,
  4. required Map question,
  5. required Map theme,
  6. required Map<String, String> customParams,
  7. required int currentQuestionNumber,
  8. required bool isLastQuestion,
  9. required Function submitData,
  10. Map? euiTheme,
})

Implementation

const YesOrNo(
    {Key? key,
    required this.func,
    required this.answer,
    required this.question,
    required this.theme,
    required this.customParams,
    required this.currentQuestionNumber,
    required this.isLastQuestion,
    required this.submitData,
    this.euiTheme})
    : super(key: key);