configureCacheDuration method

void configureCacheDuration(
  1. Duration? duration
)

Implementation

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