logCacheHit static method

void logCacheHit(
  1. Type widgetType
)

Logs a cache hit.

Implementation

static void logCacheHit(Type widgetType) {
  if (!_enabled || !_verbose) return;
  debugPrint('[SkeletonCache] Cache hit for $widgetType');
}