getConversationTypeNotificationLevel method

Future<int> getConversationTypeNotificationLevel(
  1. RCIMIWConversationType type, {
  2. IRCIMIWGetConversationTypeNotificationLevelCallback? callback,
})

获取会话类型的消息提醒状态

  • type 会话类型
  • callback 事件回调。SDK 从 5.3.1 版本开始支持 callback 方式回调。从 5.4.0 版本废弃该接口的其他回调方式,预计将在 6.x 版本删除此其他回调方式。如果传入了 callback 参数,仅触发 callback 回调。
  • 返回值 onConversationTypeNotificationLevelLoaded

Implementation

Future<int> getConversationTypeNotificationLevel(RCIMIWConversationType type,
    {IRCIMIWGetConversationTypeNotificationLevelCallback? callback}) async {
  return RCIMWrapperPlatform.instance
      .getConversationTypeNotificationLevel(type, callback: callback);
}