sendChatroomTipMessage method
- {required String roomId,
- bool resend = false,
- ChatroomMessageAction? action}
发送聊天室Tip消息
Implementation
Future<NIMResult<NIMChatroomMessage>> sendChatroomTipMessage({
required String roomId,
bool resend = false,
ChatroomMessageAction? action,
}) async {
return _createMessage({
'roomId': roomId,
'messageType': 'tip',
}).then((messageResult) async {
if (messageResult.isSuccess) {
final message = messageResult.data as NIMChatroomMessage;
await action?.call(message);
return sendChatroomMessage(message, resend);
} else {
return messageResult;
}
});
}