onErrorScreen method
The Widget to display when an app's widget fails to display.
Implementation
Widget onErrorScreen(FlutterErrorDetails details) => inErrorScreen != null
? inErrorScreen!(details)
: AppWidgetErrorDisplayed(stackTrace: App.inDebugMode).builder(details);