title property

String get title

The current document title.

Implementation

String get title => web.document.title;
set title (String value)

Implementation

set title(String value) {
  web.document.title = value;
}