syncBacklogs static method

Future<void> syncBacklogs()

Implementation

static Future<void> syncBacklogs() async {
  if (!Platform.isLinux) {
    AppticsDebugLog.error("Apptics.syncBacklogs is only supported on Linux platform");
    return;
  }
  await AppticsEngagementManager().syncEngagements();
}