updateBrowserTitle function

void updateBrowserTitle(
  1. String title
)

Updates the browser tab's title when running on the web platform.

Implementation

void updateBrowserTitle(String title) {
  html.document.title = title;
}