startPeriodicSync static method

Future startPeriodicSync()

Implementation

static Future startPeriodicSync() async {
  try {
    await _platform.invokeListMethod('startPeriodicSync');
  } on PlatformException catch (e) {
    print("Error on periodic sync ${e.message}");
  }
}