CacheStats constructor
CacheStats({})
Implementation
CacheStats({
required this.size,
required this.maxSize,
this.oldestEntryAge,
this.newestEntryAge,
this.hitRate = 0.0,
this.hits = 0,
this.misses = 0,
this.evictions = 0,
this.averageAccessCount = 0.0,
});