storeSize property

double storeSize

Retrieve the total size of the stored tiles and metadata in kibibytes (KiB)

Prefer storeSizeAsync to avoid blocking the UI thread. Otherwise, this has slightly better performance.

Implementation

double get storeSize => _db.getSizeSync(includeIndexes: true) / 1024;