cacheMisses property
int
get
cacheMisses
Retrieve the number of tiles that were unsuccessfully retrieved from the store during browsing
For asynchronous version, see cacheMissesAsync.
Includes tiles that needed updating. If using noCache, this will always return 0.
Implementation
int get cacheMisses => int.tryParse(_csgSync('cacheMisses', () => 0)) ?? 0;