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