RPInstructionStep constructor

RPInstructionStep({
  1. required String identifier,
  2. required String title,
  3. String? text,
  4. bool optional = false,
  5. String? detailText,
  6. String? imagePath,
  7. String? footnote,
})

Implementation

RPInstructionStep({
  required super.identifier,
  required super.title,
  super.text,
  super.optional,
  this.detailText,
  this.imagePath,
  super.footnote,
});