getGroupMessageReadByList method

  1. @override
Future getGroupMessageReadByList(
  1. String messageId,
  2. String jid
)
override

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;
  }
}