CompletionStep constructor

CompletionStep({
  1. Identifier? id,
  2. String? title,
  3. String? text,
  4. UIStyle? style,
  5. Display display = Display.normal,
  6. bool? isOptional = false,
  7. dynamic onFinish(
    1. Map<String, dynamic>
    )?,
  8. CrossAxisAlignment crossAxisAlignmentContent = CrossAxisAlignment.center,
  9. ResultFormat? resultFormat,
  10. List<RelevantCondition>? relevantConditions,
  11. String? titleIconAnimationFile,
  12. OnBeforeFinishCallback? onBeforeFinishCallback,
  13. double? titleIconMaxWidth = 300,
  14. String? successLottieAssetsFilePath,
  15. String? loadingLottieAssetsFilePath,
  16. String? errorLottieAssetsFilePath,
  17. String? nextButtonText = "Finish",
  18. String? backButtonText = "Back",
  19. bool? autoTrigger = false,
  20. String? cancelButtonText = "Cancel",
  21. bool? cancellable = true,
})

Implementation

CompletionStep(
    {super.id,
    super.title,
    super.text,
    super.style,
    super.display = Display.normal,
    super.isOptional = false,
    this.onFinish,
    super.crossAxisAlignmentContent,
    super.resultFormat,
    super.relevantConditions,
    super.titleIconAnimationFile,
    this.onBeforeFinishCallback,
    super.titleIconMaxWidth,
    this.successLottieAssetsFilePath,
    this.loadingLottieAssetsFilePath,
    this.errorLottieAssetsFilePath,
    super.nextButtonText = "Finish",
    super.backButtonText,
    this.autoTrigger = false,
    super.cancelButtonText,
    super.cancellable})
    : super();