RPStep constructor

RPStep({
  1. required String identifier,
  2. required String title,
  3. String? text,
  4. bool optional = false,
})

Create a RPStep object with a unique identifier, a title, and a text to be displayed.

Implementation

RPStep({
  required this.identifier,
  required this.title,
  this.text,
  this.optional = false,
});