cssCache property

Cache? get cssCache

The most recent information about the CSS cache for the process. Only available when receiving the object as part of a callback from onUpdated or onUpdatedWithMemory.

Implementation

Cache? get cssCache => _wrapped.cssCache?.let(Cache.fromJS);
set cssCache (Cache? v)

Implementation

set cssCache(Cache? v) {
  _wrapped.cssCache = v?.toJS;
}