title property

String? title

Returns the title for the App's View.

Implementation

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

Implementation

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