failedFetches property

List<FailedResource> get failedFetches

All of the resources that failed to be fetched.

Each FailedResource object contains an 'error' property that describes why the fetch failed.

You can easily check if there are any failed fetches by calling hasFailedFetches.

Try calling fetchAllFailed to fetch all of the failed fetches.

This list is unmodifiable, but it can be cleared with clearFailedFetches.

Implementation

List<FailedResource> get failedFetches => List.unmodifiable(_failedFetches);