StoreStats, accessed via FMTCStore().stats, allows access to cached statistics, as well as retrieval of a recent tile (as an image), and the watching over changes in the store.
final stats =FMTCStore('storeName').stats;await stats.all; // Retrieve the size, length, hits, and misses of this storeawait stats.size; // Retrieve the total number of KiBs of all tiles' bytes (not 'real total' size)await stats.length; // Retrieve the number of tiles belonging to this storeawait stats.hits; // Retrieve the number of successful tile retrievals when browsingawait stats.misses; // Retrieve number of unsuccessful tile retrievals when browsingawait stats.tileImage(); // Retrieve the tile most recently modified in the specified storeawait stats.watchChanges(); // Watch for changes to statistics (including tile events) and metadata