defaultErrorWidgetBuilder function
Implementation
@Deprecated("Use 'AppErrorHandler.displayErrorWidget' instead.")
Widget defaultErrorWidgetBuilder(
FlutterErrorDetails details, {
i.ParagraphStyle? paragraphStyle,
i.TextStyle? textStyle,
EdgeInsets? padding,
double? minimumWidth,
Color? backgroundColor,
CustomPainter? customPainter,
bool? stackTrace,
}) =>
AppErrorHandler.displayErrorWidget(
details,
paragraphStyle: paragraphStyle,
textStyle: textStyle,
padding: padding,
minimumWidth: minimumWidth,
backgroundColor: backgroundColor,
stackTrace: stackTrace ?? v.App.inDebugMode,
);