CacheEntryRemovedEvent<T> constructor
CacheEntryRemovedEvent<T> (
- Cache<
T> source, - CacheInfo entry, {
- CacheEventType? type,
Builds a CacheEntryRemovedEvent
source
: The cache that originated the event- entry: The removed entry
type
: The event type
Implementation
CacheEntryRemovedEvent(Cache<T> source, this.entry, {CacheEventType? type})
: super(source, type ?? CacheEventType.removed);