syncTripData function

Future<void> syncTripData()

Implementation

Future<void> syncTripData() async {
  try {
    await platform.invokeMethod('syncTripData');
  } catch (e, stacktrace) {
    if (kDebugMode) {
      print("Error in getCurrentTripData");
      print(e);
      print(stacktrace);
    }
  }
}