didRelease property
Stream<CacheContext<TIdentifier, TValue> >
get
didRelease
A stream of CacheContexts that dispatches when an item is released from the cache.
This does not necessarily mean that the item has been removed, only that it has been marked as eligible for removal. The didRemove stream contains information about true removal.
Implementation
Stream<CacheContext<TIdentifier, TValue>> get didRelease =>
_didReleaseController.stream;