makeGroupVoiceCall method
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;
}
}