title property

set title (Text title)

Set the title of the page.

Implementation

set title(Text title) {
  // Only set one title at a time.
  if (this.properties.contains('title')) {
    this.properties.remove('title');
  }

  this.properties.add(name: 'title', property: TitleProp(content: [title]));
}