appTitle property

String? appTitle

Implementation

String? get appTitle {
  return CAppView.title;
}
void appTitle=(String? v)

Sets / removes the CodeMeltedUI.app title.

Implementation

set appTitle(String? v) {
  CAppView.title = v;
}