printCacheStats static method
void
printCacheStats()
Print cache statistics
Implementation
static void printCacheStats() {
final stats = ResponsiveCache.getStats();
debugPrint('═══════════════════════════════════════');
debugPrint('💾 ResponsiveMaster Cache Statistics');
debugPrint('═══════════════════════════════════════');
debugPrint('Cached Items: ${stats['size']}');
debugPrint('Last Cache Key: ${stats['lastKey']}');
debugPrint('═══════════════════════════════════════');
}