AppStateXWidget constructor
AppStateXWidget({})
The entrypoint of the framework passed to runApp() This is a StatelessWidget where you can define the loading screen or the App's error handling.
Implementation
AppStateXWidget({
Key? key,
this.splashScreen,
this.inSplashScreen,
this.circularProgressIndicator,
}) : super(key: key ?? GlobalKey<_AppStateXWidgetState>());