ignoreCache property

bool? get ignoreCache

When true, the loader will bypass the cache for all inspected page resources loaded before the load event is fired. The effect is similar to pressing Ctrl+Shift+R in the inspected window or within the Developer Tools window.

Implementation

bool? get ignoreCache => _wrapped.ignoreCache;
set ignoreCache (bool? v)

Implementation

set ignoreCache(bool? v) {
  _wrapped.ignoreCache = v;
}