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