logCacheMiss static method

void logCacheMiss(
  1. Type widgetType
)

Logs a cache miss.

Implementation

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