setTopicInfo method
修改话题信息 4.0.1及以上版本支持 web版本不支持
Implementation
Future<V2TimCallback> setTopicInfo({
required V2TimTopicInfo topicInfo,
}) async {
if (kIsWeb) {
return TencentCloudChatSdkPlatform.instance.setTopicInfo(
topicInfo: topicInfo,
);
}
return TIMGroupManager.instance.setTopicInfo(
topicInfo: topicInfo,
);
}