onTopConversationsLoaded property

dynamic Function(int? code, List<RCIMIWConversationType>? conversationTypes, String? channelId, List<RCIMIWConversation>? conversations)? onTopConversationsLoaded
getter/setter pair
  • code 接口回调的状态码,0 代表成功,非 0 代表出现异常
  • conversationTypes 会话类型集合
  • channelId 频道 ID,仅支持超级群使用,其他会话类型传 null 即可。
  • conversations 加载的会话集合

Implementation

Function(
  int? code,
  List<RCIMIWConversationType>? conversationTypes,
  String? channelId,
  List<RCIMIWConversation>? conversations,
)? onTopConversationsLoaded;