MemoryCacheStatistics constructor

const MemoryCacheStatistics({
  1. required int currentEntryCount,
  2. int? currentEstimatedSize,
  3. required int totalMisses,
  4. required int totalHits,
})

Creates a new instance of MemoryCacheStatistics.

Implementation

const MemoryCacheStatistics({
  required this.currentEntryCount,
  this.currentEstimatedSize,
  required this.totalMisses,
  required this.totalHits,
});