LruCache<K, V> constructor

LruCache<K, V>({
  1. required Storage<K, V> storage,
  2. OnEvict<K, V>? onEvict,
})

Implementation

LruCache({required Storage<K, V> storage, OnEvict<K, V>? onEvict})
    : super(storage: storage, onEvict: onEvict);