isDownloaded method

bool isDownloaded(
  1. String regionName
)

Check if a region is downloaded.

Implementation

bool isDownloaded(String regionName) {
  return _cache.any((m) => m.regionName == regionName);
}