isDownloaded property

bool get isDownloaded

Whether the item has local content available.

Returns true when downloadStatus is DownloadStatus.downloaded or DownloadStatus.current.

Implementation

bool get isDownloaded =>
    downloadStatus == DownloadStatus.downloaded ||
    downloadStatus == DownloadStatus.current;