title property

String title

The title text. Different types of Steps are using the title text differently.

For e.g. the title of RPCompletionStep is rendered in the middle of the screen while the title of an RPQuestionStep is the text of the actual question.

Implementation

String get title => _title;
void title= (String title)

Implementation

set title(String title) {
  this._title = title;
}