fix & opt.

- fix: `sftpGoPath`
- opt.: `PersistentStore.toJson`
- rm: `first` store
- opt.: log print
This commit is contained in:
lollipopkit
2023-10-27 18:13:02 +08:00
parent 6579190ae4
commit 92bb653e81
14 changed files with 38 additions and 51 deletions

View File

@@ -39,6 +39,9 @@ class PersistentStore<E> {
files.map((e) => e.path.replaceFirst('$docPath/', '')).toList();
return paths;
}
/// Convert db to json
Map<String, dynamic> toJson() => {for (var e in box.keys) e: box.get(e)};
}
abstract class StorePropertyBase<T> {