failedRegions property

  1. @Deprecated('Migrate to `recoverableRegions.failedOnly`. $_syncRemoval')
Future<List<RecoveredRegion>> failedRegions

List all failed failed downloads

A failed download is one that was found in the recovery database, but not in the application memory. It can therefore be assumed that the download is also no longer in memory, and was therefore stopped unexpectedly, for example after a fatal crash.

Implementation

@Deprecated('Migrate to `recoverableRegions.failedOnly`. $_syncRemoval')
Future<List<RecoveredRegion>> get failedRegions =>
    recoverableRegions.then((e) => e.failedOnly.toList());