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