makeGroupVoiceCall method

  1. @override
Future<bool> makeGroupVoiceCall(
  1. String groupJid,
  2. List<String>? jidList
)
override

Implementation

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