#64 opt. for process page

This commit is contained in:
lollipopkit
2023-06-27 12:27:16 +08:00
parent 0022294ea4
commit 9ffe5583fd
10 changed files with 35 additions and 27 deletions

View File

@@ -31,6 +31,10 @@ class StoreProperty<T> {
return _box.get(_key, defaultValue: defaultValue);
}
dynamic fetchRaw() {
return _box.get(_key, defaultValue: defaultValue);
}
Future<void> put(T value) {
return _box.put(_key, value);
}