valueFor method
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);
}
Reads and returns the value associated with the given key.
Returns null if the key does not exist.
dynamic valueFor(String key) {
return _storage.read(key);
}