ProxyCacheManager constructor
ProxyCacheManager({})
Creates a new ProxyCacheManager with the given parameters
Implementation
ProxyCacheManager({
required SharedPreferences sharedPreferences,
int primaryCacheSize = 10,
int secondaryCacheSize = 50,
int tertiaryCacheSize = 200,
}) : _sharedPreferences = sharedPreferences,
_primaryCacheSize = primaryCacheSize,
_secondaryCacheSize = secondaryCacheSize,
_tertiaryCacheSize = tertiaryCacheSize;