getTexture static method

GTexture? getTexture(
  1. String cacheId
)

This method returns a GTexture instance for a given cacheId, or null if the cacheId is not present in the textureCache cache.

Implementation

static GTexture? getTexture(String cacheId) {
  return textureCache[cacheId];
}