revokeContactSync method

  1. @override
Future revokeContactSync()
override

Implementation

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