RPQuestionStep constructor
RPQuestionStep({})
Creates a RPQuestionStep.
identifier
is a unique id of this step,
title
is shown as the title of the question), and
answerFormat
defines the type of questionnaire, as defined in
RPAnswerFormat.
Implementation
RPQuestionStep({
required super.identifier,
required super.title,
super.optional,
required this.answerFormat,
this.autoSkip = false,
this.timeout = const Duration(seconds: 0),
this.autoFocus = false,
super.footnote,
});