updateApp method
void
updateApp()
Forces a rebuild of the entire application.
This method calls setState() without any changes, which triggers a rebuild of the entire widget tree. Use this method when you need to refresh the app but aren't changing any specific state.
Implementation
void updateApp() {
setState(() {});
actionedAnnounce("App wide setState()");
}