fromCache property

bool get fromCache

Indicates if this response was fetched from disk cache.

Implementation

bool get fromCache => _wrapped.fromCache;
set fromCache (bool v)

Implementation

set fromCache(bool v) {
  _wrapped.fromCache = v;
}