When using a network image in flutter sometimes I got the error Connection closed before full header was received
. The code below allows me to output the error but how can I force the widget to reload the image?
Image.network(p.thumbURL,
errorBuilder: (BuildContext context, Object exception, StackTrace stackTrace) {
Log.e(exception);
return Container();
},
),