getCacheStats static method

Map<String, int> getCacheStats()

Get cache statistics for debugging

Implementation

static Map<String, int> getCacheStats() {
  return {
    'pathCacheSize': _pathCache.length,
    'paintCacheSize': _paintCache.length,
  };
}