InstructionStep constructor

InstructionStep({
  1. Identifier? id,
  2. String? title = "",
  3. String? text,
  4. Display display = Display.normal,
  5. bool? isOptional = false,
  6. UIStyle? style,
  7. List<RelevantCondition>? relevantConditions,
  8. String? nextButtonText = "Start",
  9. String? backButtonText = "Back",
  10. List<DynamicData>? instructions = const [],
  11. double? titleIconMaxWidth = 300,
  12. String? titleIconAnimationFile,
  13. String? cancelButtonText = "Cancel",
  14. CrossAxisAlignment crossAxisAlignmentContent = CrossAxisAlignment.center,
  15. ResultFormat? resultFormat,
  16. bool? cancellable = true,
})

Implementation

InstructionStep(
    {super.id,
    super.title = "",
    super.text,
    super.display = Display.normal,
    super.isOptional = false,
    super.style,
    super.relevantConditions,
    super.nextButtonText = "Start",
    super.backButtonText,
    this.instructions = const [],
    super.titleIconMaxWidth,
    super.titleIconAnimationFile,
    super.cancelButtonText,
    super.crossAxisAlignmentContent,
    super.resultFormat,
    super.cancellable})
    : super();