getSvg static method

SvgData? getSvg(
  1. String cacheId
)

This method returns an SvgData instance for a given cacheId, or null if the cacheId is not present in the svgCache cache.

Implementation

static SvgData? getSvg(String cacheId) {
  return svgCache[cacheId];
}