rootSizeAsync property

Future<double> rootSizeAsync

Retrieve the total size of all stored tiles in kibibytes (KiB) asynchronously

Internally sums up the size of all stores (using StoreStats.storeSizeAsync).

Implementation

Future<double> get rootSizeAsync async =>
    (await Future.wait(storesAvailable.map((e) => e.stats.storeSizeAsync)))
        .sum /
    1024;