stopPeriodicSync static method

Future stopPeriodicSync()

Implementation

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