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