makeVideoCall method

  1. @override
Future<bool> makeVideoCall(
  1. String userJid
)
override

Implementation

@override
Future<bool> makeVideoCall(String userJid) async {
  bool val;
  try {
    LogMessage.d('makeVideoCall :', userJid);
    val = await mirrorFlyCallMethodChannel.invokeMethod('makeVideoCall', {"user_jid": userJid});
    return val;
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    rethrow;
  } on Exception catch (error) {
    LogMessage.d("Exception ", " $error");
    rethrow;
  }
}