expirationTokens property

List<Stream<void>> get expirationTokens

Gets the Streams that cause the cache entry to expire.

When any stream emits a value, the cache entry will be evicted.

Implementation

List<Stream<void>> get expirationTokens =>
    _expirationTokens ??= <Stream<void>>[];