netCoreSyncAllSyncIds method

String netCoreSyncAllSyncIds()

(This method is used internally, no need to use it directly)

Implementation

String netCoreSyncAllSyncIds() {
  if (dataAccess.syncIdInfo == null) {
    return "";
  }
  List<String> allSyncIds = dataAccess.syncIdInfo!.getAllSyncIds();
  return allSyncIds.join(", ");
}