get abstract method

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

Retrieves a Future value for the key passed from the key store.

@param key Key associated with a value. @return Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key or if key is not null.

Implementation

Future<V>? get(K key);