LruCache<K, V> constructor
LruCache<K, V> ({
- required int maxSize,
Implementation
LruCache({required this.maxSize}) : assert(maxSize > 0) {
_cache = LinkedHashMap<K, V>();
}