get abstract method

Future<V?> get(
  1. K key
)

Returns the value associated with the given key, or null if the key is not present.

Accessing a key should update its usage status in the LRU order.

Implementation

Future<V?> get(K key);