LinkedLruHashMap<K, V> constructor

LinkedLruHashMap<K, V>({int maximumSize })

Create a new LinkedLruHashMap with a maximumSize.

Implementation

factory LinkedLruHashMap({int maximumSize}) =>
    new LinkedLruHashMap._fromMap(new HashMap<K, _LinkedEntry<K, V>>(),
        maximumSize: maximumSize);