InstructionStep constructor
InstructionStep({})
Implementation
InstructionStep({
required this.title,
required this.text,
bool isOptional = false,
String buttonText = 'Next',
StepIdentifier? stepIdentifier,
bool? canGoBack,
bool? showProgress,
bool showAppBar = true,
}) : super(
stepIdentifier: stepIdentifier,
isOptional: isOptional,
buttonText: buttonText,
canGoBack: canGoBack ?? false,
showProgress: showProgress ?? false,
showAppBar: showAppBar,
);