loadUltraGroupDefaultNotificationLevel method

  1. @Deprecated('请使用 [getUltraGroupDefaultNotificationLevel] 代替')
Future<int> loadUltraGroupDefaultNotificationLevel(
  1. String targetId
)

获取超级群的默认消息状态

  • targetId 会话 ID
  • 返回值 当次接口操作的状态码。0 代表调用成功 具体结果需要实现接口回调,非 0 代表当前接口调用操作失败,不会触发接口回调,详细错误参考错误码
  • 接口回调 onUltraGroupDefaultNotificationLevelLoaded

Implementation

@Deprecated('请使用 [getUltraGroupDefaultNotificationLevel] 代替')
Future<int> loadUltraGroupDefaultNotificationLevel(String targetId) async {
  return RCIMWrapperPlatform.instance.loadUltraGroupDefaultNotificationLevel(targetId);
}