deleteUnreadMessageSeparatorOfAConversation method
Future<bool?>
deleteUnreadMessageSeparatorOfAConversation(
- String jid
)
override
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) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}