isCallConversionRequestAvailable method

  1. @override
Future<bool?> isCallConversionRequestAvailable()
override

This method is used to check if the call conversion request is available.

Implementation

@override
Future<bool?> isCallConversionRequestAvailable() async {
  bool? res;
  try {
    res = await mirrorFlyCallMethodChannel
        .invokeMethod<bool>('isCallConversionRequestAvailable');
    return res;
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    rethrow;
  } on Exception catch (error) {
    LogMessage.d("Exception ", " $error");
    rethrow;
  }
}