getCallGroupJid method

  1. @override
Future<String> getCallGroupJid()
override

This method is used to get the call group JID.

Implementation

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