LoadingErrorWidgetBuilder typedef
LoadingErrorWidgetBuilder =
Widget Function(BuildContext context, Object object, StackTrace? stackTrace)
A typedef for a function that builds an error widget.
The function takes a BuildContext, an Object representing the error, and a StackTrace? for the stack trace, and returns a Widget.
Implementation
typedef LoadingErrorWidgetBuilder = Widget Function(
BuildContext context, Object object, StackTrace? stackTrace);