LoadingErrorWidgetBuilder typedef
LoadingErrorWidgetBuilder =
Widget Function(BuildContext context, String url, Object error)
Builder function to create an error widget. This builder is called when the image failed loading, for example due to a 404 NotFound exception.
Implementation
typedef LoadingErrorWidgetBuilder = Widget Function(
BuildContext context,
String url,
Object error,
);