title method

AppBuilder title(
  1. String value
)

Sets the document title — appears in the browser tab.

Implementation

AppBuilder title(String value) {
  _title = value;
  return this;
}