save method
Saves the value to the store.
Implementation
Future<void> save(T value) async {
final str = encode(value);
await store.setItem(key, str);
}
Saves the value to the store.
Future<void> save(T value) async {
final str = encode(value);
await store.setItem(key, str);
}