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