sendThumbsupMessage method
Implementation
sendThumbsupMessage(BuildContext c) async {
final customInfo = {
"version": 1.0, // 协议版本号
"businessID": "flutter_live_kit", // 业务标识字段
"data": {
"cmd":
"thumbs_up", // send_gift_message: 发送礼物消息, update_online_member: 更新在线人数
}
};
messageController.sendThumbsUpMessage(jsonEncode(customInfo), avChatRoomID);
final liveRoomStoreState = LiveRoomStore.of(c, rebuild: false);
liveRoomStoreState.increaseThumbsUpCount();
TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.increaseGroupCounter(groupID: avChatRoomID, key: "hot", value: 1);
}