syncSmsData static method

Future syncSmsData()

Implementation

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