scriptCache property

Cache? get scriptCache

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

Implementation

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

Implementation

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