cacheTimeout property

Duration cacheTimeout

Implementation

Duration get cacheTimeout => _cacheTimeout;
void cacheTimeout=(Duration? value)

Implementation

set cacheTimeout(Duration? value) {
  _cacheTimeout = value ?? defaultCacheTimeout;

  if (_cacheTimeout.inMilliseconds < 100) {
    _cacheTimeout = Duration(milliseconds: 100);
  }
}