appState property
AppStateX<StatefulWidget> ?
get
appState
Returns the 'first' StateX object in the App Supply this version of AppStateX
Implementation
AppStateX? get appState {
final state = super.rootState;
return state == null ? null : state as AppStateX;
}