cache property

Cache get cache

Asset cache used by various Ignis nodes.

Implementation

static Cache get cache => _cache;
set cache (Cache value)

Implementation

static set cache(Cache value) {
  if (identical(_cache, value)) return;
  _cache.dispose();
  _cache = value;
}