syncronizeAll static method

Future syncronizeAll()

Implementation

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