documentTitle property

String get documentTitle

The browser tab/window title. Returns an empty string on non-web.

Implementation

static String get documentTitle => impl.documentTitle;
set documentTitle (String value)

Sets the browser tab/window title. No-op on non-web.

Implementation

static set documentTitle(String value) => impl.setDocumentTitle(value);