RPInstructionStep constructor

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

Implementation

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