onMessagesSearched property

  1. @Deprecated('建议在调用接口时直接传入 callback 参数,此回调从 5.4.0 版本开始不推荐使用')
dynamic Function(int? code, RCIMIWConversationType? type, String? targetId, String? channelId, String? keyword, int? startTime, int? count, List<RCIMIWMessage>? messages)? onMessagesSearched
getter/setter pair

searchMessages 的接口监听

  • code 接口回调的状态码,0 代表成功,非 0 代表出现异常
  • type 会话类型
  • targetId 会话 ID
  • channelId 频道 ID,仅支持超级群使用,其他会话类型传 null 即可。
  • keyword 搜索的关键字
  • startTime 查询 beginTime 之前的消息
  • count 查询的数量
  • messages 查询到的消息集合

Implementation

@Deprecated('建议在调用接口时直接传入 callback 参数,此回调从 5.4.0 版本开始不推荐使用')
Function(
  int? code,
  RCIMIWConversationType? type,
  String? targetId,
  String? channelId,
  String? keyword,
  int? startTime,
  int? count,
  List<RCIMIWMessage>? messages,
)? onMessagesSearched;