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