LruCacheEntry<K, V> constructor

LruCacheEntry<K, V>(
  1. K key,
  2. V? value,
  3. int lastUse
)

Implementation

LruCacheEntry(K key, V? value, this.lastUse) : super(key, value);