AppStatefulWidget constructor
AppStatefulWidget({})
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
AppStatefulWidget({
Key? key,
this.splashScreen,
this.inSplashScreen,
this.circularProgressIndicator,
}) : _app = v.AppObject(),
super(key: key ?? GlobalKey<_AppStatefulWidgetState>());