QuestionsPage constructor

const QuestionsPage({
  1. Key? key,
  2. required String token,
  3. required String domain,
  4. required Map Questions,
  5. required Map<String, String> customParams,
  6. FirstQuestionAnswer? firstQuestionAnswer,
  7. Function? onNext,
  8. Function? onSubmit,
  9. Function? onSubmitCloseModalFunction,
  10. Map? euiTheme,
  11. String? email,
  12. Function? onError,
})

Implementation

const QuestionsPage(
    {Key? key,
    required this.token,
    required this.domain,
    required this.Questions,
    required this.customParams,
    this.firstQuestionAnswer,
    this.onNext,
    this.onSubmit,
    this.onSubmitCloseModalFunction,
    this.euiTheme,
    this.email,
    this.onError})
    : super(key: key);