stats property

Implementation

ChartObjectCacheStats get stats => ChartObjectCacheStats(
  name: 'paths',
  size: _cache.length,
  maxSize: _maxSize,
  hits: _hits,
  misses: _misses,
  evictions: _evictions,
);