QuestionStep constructor
QuestionStep({
- bool isOptional = false,
- String buttonText = 'Next',
- StepIdentifier? stepIdentifier,
- bool showAppBar = true,
- String title = '',
- String text = '',
- Widget content = const SizedBox.shrink(),
- required AnswerFormat answerFormat,
Implementation
QuestionStep({
bool isOptional = false,
String buttonText = 'Next',
StepIdentifier? stepIdentifier,
bool showAppBar = true,
this.title = '',
this.text = '',
this.content = const SizedBox.shrink(),
required this.answerFormat,
}) : super(
stepIdentifier: stepIdentifier,
isOptional: isOptional,
buttonText: buttonText,
showAppBar: showAppBar,
);