cacheMisses property Null safety

int cacheMisses

Retrieve the number of tiles that were unsuccessfully retrieved from the store during browsing

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

Implementation

int get cacheMisses => _db.storeDescriptor.getSync(0)!.misses;