value property

BasePrfObject<T> get value

Provides access to the tracked value, considering the caching strategy.

Returns a BasePrfObject that either uses in-memory caching or reads directly from disk based on the useCache flag.

Implementation

BasePrfObject<T> get value =>
    useCache ? _valueWithCache : _valueWithCache.isolated;