storeSizeAsync property

Future<double> storeSizeAsync

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

Implementation

Future<double> get storeSizeAsync async =>
    await _db.getSize(includeIndexes: true) / 1024;