RPInstructionStep constructor

RPInstructionStep({String identifier String title String detailText String footnote String imagePath })

Implementation

RPInstructionStep({String identifier, String title, String detailText, String footnote, String imagePath})
    : super.withTitle(identifier, title) {
  this._detailText = detailText;
  this._footnote = footnote;
  this._imagePath = imagePath;
}