getAtlas static method

GTextureAtlas? getAtlas(
  1. String cacheId
)

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

Implementation

static GTextureAtlas? getAtlas(String cacheId) {
  return atlasCache[cacheId];
}