syncLocationData static method

Future syncLocationData()

Implementation

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