totalDownloadedSize property
int
get
totalDownloadedSize
Get total size of all downloaded maps in bytes.
Implementation
int get totalDownloadedSize {
return _cache.fold(0, (sum, m) => sum + m.fileSize);
}