get method

V? get(
  1. K key
)

Gets a stored value. Returns null if value doesn't exist.

Implementation

V? get(K key) => getRecord(key)?.value;