RPQuestionStep constructor
RPQuestionStep({
- required String identifier,
- required RPAnswerFormat answerFormat,
- required String title,
- bool optional = false,
Creates a Question Step populated with title (text of the question) and answer format on which the actual layout depends
Implementation
RPQuestionStep(
{required String identifier,
required this.answerFormat,
required String title,
bool optional = false})
: super(identifier: identifier, title: title, optional: optional);