getGif static method

GifAtlas? getGif(
  1. String cacheId
)

Retrieves a cached GifAtlas instance associated with the given cacheId. Returns null if no GifAtlas is found.

Implementation

static GifAtlas? getGif(String cacheId) {
  return gifCache[cacheId];
}