downloadedCount property

int get downloadedCount

Get count of downloaded maps (excluding bundled).

Implementation

int get downloadedCount {
  return _cache.where((m) => !m.isBundled).length;
}