contactSyncState method
Implementation
@override
Future<dynamic> contactSyncState() async {
dynamic response = "";
try {
response = await mirrorFlyMethodChannel.invokeMethod('contactSyncState');
debugPrint("contactSyncState Result ==> $response");
return response;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}