deleteUnreadMessageSeparatorOfAConversation method
This method is used to remove all unread message separators.
jid
: The JID of the conversation.
Implementation
@override
Future<bool?> deleteUnreadMessageSeparatorOfAConversation(String jid) async {
bool? res;
try {
res = await mirrorFlyMethodChannel.invokeMethod<bool>(
'deleteUnreadMessageSeparatorOfAConversation', {"jid": jid});
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}