title property
String?
get
title
Returns the title for the App's View.
Implementation
String? get title => appState?.title;
set
title
(String? v)
Implementation
set title(String? v) {
if (v != null) {
appState?.title = v;
}
}