syncAll method

Future<void> syncAll()

Implementation

Future<void> syncAll() async {
  List<T> tmp = [];

  tmp.addAll(_all.values);

  for (T model in tmp) {
    await syncModel(model);
  }
}