syncronizeAll static method
Implementation
static Future syncronizeAll() async {
if (AuthService.instance.currentUser == null) return;
syncronized = false;
await RealmSyncronizer.syncronize();
syncronized = true;
return true;
}
static Future syncronizeAll() async {
if (AuthService.instance.currentUser == null) return;
syncronized = false;
await RealmSyncronizer.syncronize();
syncronized = true;
return true;
}