makeGroupVideoCall static method

Future<bool> makeGroupVideoCall({
  1. String groupJid = "",
  2. List<String> jidList = const [],
})

Used as a makeGroupVideoCall class for Mirrorfly

  • @property groupJid used to make a Group video call to this groupJid
  • @property jidList used to make a Group video call to this user jid list used to make a video call

Implementation

static Future<bool> makeGroupVideoCall({String groupJid = "", List<String> jidList = const []}) async {
  return FlyChatFlutterPlatform.instance.makeGroupVideoCall(groupJid, jidList);
}