FluoQuestionScreen constructor
const
FluoQuestionScreen({
- Key? key,
- required String title,
- required List<
FluoAnswer> answers, - required dynamic onContinue(),
- FluoQuestionScreenStyle style = const FluoQuestionScreenStyle(),
- bool singleChoice = true,
Implementation
const FluoQuestionScreen({
super.key,
required this.title,
required this.answers,
required this.onContinue,
this.style = const FluoQuestionScreenStyle(),
this.singleChoice = true,
});