setAppTitle method

TitleManager setAppTitle(
  1. String? appTitle
)

Set the application-level title used as the final fallback.

Triggers a title recomputation.

Implementation

TitleManager setAppTitle(String? appTitle) {
  _appTitle = appTitle;
  _applyTitle();
  return this;
}