markConversationAsUnread method
Implementation
@override
markConversationAsUnread(List<String> jidlist) async {
try {
await mirrorFlyMethodChannel
.invokeMethod('markConversationAsUnread', {"jidlist": jidlist});
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}