get static method

Widget? get(
  1. SkeletonCacheKey key
)

Gets a cached skeleton widget.

Implementation

static Widget? get(SkeletonCacheKey key) {
  if (!_enabled) return null;
  return _cache[key];
}