minimumFetchInterval property

Duration minimumFetchInterval

Defines the maximum age in milliseconds of an entry in the config cache before it is considered stale. Defaults to twelve hours.

Implementation

Duration get minimumFetchInterval =>
    Duration(milliseconds: jsObject.minimumFetchIntervalMillis);
void minimumFetchInterval=(Duration value)

Implementation

set minimumFetchInterval(Duration value) {
  jsObject.minimumFetchIntervalMillis = value.inMilliseconds;
}