title property

String? get title

Returns the title for the App's View.

Implementation

static String? get title => _appState?.title;
set title (String? v)

Implementation

static set title(String? v) {
  if (v != null) {
    _appState?.title = v;
  }
}