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});
    debugPrint(
        "getGroupMessageReadByList Response ==> $messageDeleteResponse");
    return messageDeleteResponse;
  } on PlatformException catch (e) {
    debugPrint("Platform Exception ===> $e");
    rethrow;
  } on Exception catch (error) {
    debugPrint("Exception ==> $error");
    rethrow;
  }
}