add full sync

This commit is contained in:
shenlong-tanwen
2024-09-02 02:16:47 +05:30
parent 877c3b028b
commit e81b61c98b
30 changed files with 333 additions and 179 deletions
@@ -50,7 +50,7 @@ class StoreUserConverter extends IStoreConverter<User, String> {
@override
Future<User?> fromPrimitive(String value) async {
return await di<IUserRepository>().getUser(value);
return await di<IUserRepository>().fetch(value);
}
@override