CompletionStep constructor

CompletionStep({
  1. bool isOptional = false,
  2. required StepIdentifier stepIdentifier,
  3. String buttonText = 'End Survey',
  4. bool showAppBar = true,
  5. required String title,
  6. required String text,
  7. String assetPath = "",
})

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,
      );