putIfAbsent method
V
putIfAbsent(
- K key,
- V ifAbsent()
Implementation
V putIfAbsent(K key, V Function() ifAbsent) => _lruMap.putIfAbsent(key, () => _createNewNode(key, ifAbsent.call())).value;