RPCompletionStep constructor

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

Create a new RPCompletionStep which shown the text to the user.

Implementation

RPCompletionStep({
  required super.identifier,
  required super.title,
  super.text,
  super.optional,
});