Flutter 图像url在Flatter中失败时应用程序崩溃

Flutter 图像url在Flatter中失败时应用程序崩溃,flutter,flutter-image,Flutter,Flutter Image,我尝试了stackoverflow中提供的解决方案,但我的问题没有得到解决 Exception caught by package:flutter_image ═════════════════════════════════════════════════ The following FetchFailure was thrown NetworkImageWithRetry failed to load http://204.11.59.195/~automobi/aiswariaooh/up

我尝试了stackoverflow中提供的解决方案,但我的问题没有得到解决

Exception caught by package:flutter_image ═════════════════════════════════════════════════
The following FetchFailure was thrown NetworkImageWithRetry failed to load http://204.11.59.195/~automobi/aiswariaooh/uploads/images/1573712028.jpg:
FetchFailure(
  attemptCount: 1
  httpStatusCode: 404
  totalDuration: 0:00:01.143462
  originalException: null
)
Image(  image: NetworkImageWithRetry(img1),
        height: imageHeight, 
        ),
Use this package : (https://pub.dev/packages/cached_network_image)!: 

CachedNetworkImage(
        imageUrl: "http://via.placeholder.com/350x150",
        placeholder: (context, url) => CircularProgressIndicator(),
        errorWidget: (context, url, error) => Icon(Icons.error),
     ),