getStats static method
Get cache statistics
Implementation
static Map<String, dynamic> getStats() {
return {
'widgetCacheSize': _widgetCache.length,
'bitmapCacheSize': _bitmapCache.length,
'maxCacheSize': _maxCacheSize,
'totalEntries': _widgetCache.length + _bitmapCache.length,
};
}