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