clearMessagesUnreadStatus static method
Implementation
static Future<bool?> clearMessagesUnreadStatus(int conversationType, String targetId) async {
Map map = {'conversationType': conversationType, 'targetId': targetId};
bool? rc = await _channel.invokeMethod(RCMethodKey.ClearMessagesUnreadStatus, map);
return rc;
}