appStateX property
Reference the App State object
Implementation
@override
AppStateX? get appStateX => this;
Implementation
set appStateX(AppStateX? appState) {
if (_appStateX == null) {
if (appState != null) {
_appStateX = appState;
}
}
}