cache property

bool? get cache

The browser's cache.

Implementation

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

Implementation

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