title property

String? title

Sets / gets the app title for the CodeMeltedUI.app.

Implementation

static String? get title => uiState.get<String?>("title");
void title=(String? v)

Implementation

static set title(String? v) => uiState.set<String?>("title", v, notify: true);