makeVoiceCall method

  1. @override
Future<void> makeVoiceCall(
  1. String userJid,
  2. dynamic callback(
    1. FlyResponse response
    )?
)
override

This method is used to make the voice call.

Implementation

@override
Future<void> makeVoiceCall(
    String userJid, Function(FlyResponse response)? callback) async {
  // bool val;
  try {
    LogMessage.d('makeVoiceCall :', userJid);
    await mirrorFlyCallMethodChannel
        .invokeMethod('makeVoiceCall', {"user_jid": userJid});
    callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
    // return val;
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(e.code, e.message, e.details)));
  } on Exception catch (e) {
    LogMessage.d("Exception ", " $e");
    callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
  }
}