absoluteExpiration property

DateTime? get absoluteExpiration

Gets or sets the absolute expiration date for the cache entry.

Implementation

DateTime? get absoluteExpiration => _absoluteExpiration;
set absoluteExpiration (DateTime? value)

Implementation

set absoluteExpiration(DateTime? value) {
  _checkFrozen();
  _absoluteExpiration = value;
}