valueFor method

dynamic valueFor(
  1. String key
)

Reads and returns the value associated with the given key.

Returns null if the key does not exist.

Implementation

dynamic valueFor(String key) {
  return _storage.read(key);
}