syncDeviceData static method

Future syncDeviceData()

Implementation

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