downloadedCount property
int
get
downloadedCount
Get count of downloaded maps (excluding bundled).
Implementation
int get downloadedCount {
return _cache.where((m) => !m.isBundled).length;
}
Get count of downloaded maps (excluding bundled).
int get downloadedCount {
return _cache.where((m) => !m.isBundled).length;
}