setValueFor method
Writes a value to storage for the given key.
If the key already exists, its value will be overwritten.
Implementation
void setValueFor(String key, dynamic value) {
_storage.write(key, value);
}
Writes a value to storage for the given key.
If the key already exists, its value will be overwritten.
void setValueFor(String key, dynamic value) {
_storage.write(key, value);
}