onErrorScreen method

Widget onErrorScreen(
  1. FlutterErrorDetails details
)
inherited

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);