AppMVC constructor
AppMVC({
- Key? key,
- Widget? loadingScreen,
- FlutterExceptionHandler? errorHandler,
- ErrorWidgetBuilder? errorScreen,
- ReportErrorHandler? errorReport,
- bool allowNewHandlers = true,
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
AppMVC({
Key? key,
Widget? loadingScreen,
FlutterExceptionHandler? errorHandler,
ErrorWidgetBuilder? errorScreen,
v.ReportErrorHandler? errorReport,
bool allowNewHandlers = true,
}) : super(
key: key,
loadingScreen: loadingScreen,
errorHandler: errorHandler,
errorScreen: errorScreen,
errorReport: errorReport,
allowNewHandlers: allowNewHandlers,
);