getGroupJid method
Implementation
@override
Future<String?> getGroupJid(String jid) async {
String? response;
try {
response = await mirrorFlyMethodChannel
.invokeMethod<String>('getGroupJid', {"jid": jid});
debugPrint("getGroupJid Result ==> $response");
return response;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}