lastUpdate property

BasePrfObject<DateTime> get lastUpdate

Provides access to the last update timestamp, 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<DateTime> get lastUpdate =>
    useCache ? _lastUpdateWithCache : _lastUpdateWithCache.isolated;