CompletionStep constructor
CompletionStep({})
Implementation
CompletionStep({
bool isOptional = false,
required StepIdentifier stepIdentifier,
String buttonText = 'End Survey',
bool showAppBar = true,
required this.title,
required this.text,
this.assetPath = ""
}) : super(
stepIdentifier: stepIdentifier,
isOptional: isOptional,
buttonText: buttonText,
showAppBar: showAppBar,
);