CacheOptions.permanent constructor
CacheOptions.permanent()
Creates CacheOptions for permanent cache entries
Implementation
factory CacheOptions.permanent() {
return const CacheOptions(
maxAgeSeconds: null, // Never expires
levels: [CacheLevel.memory, CacheLevel.disk],
compress: true,
);
}