configureCacheDuration method
Implementation
void configureCacheDuration(Duration? duration) {
if (duration != null) {
_cacheManager = CacheManager(
Config(
_cacheKey,
stalePeriod: duration,
maxNrOfCacheObjects: 200,
),
);
}
}