sendChatMessage abstract method
- ChatId chatId, {
- ChatMessageText? text,
- List<
Attachment> ? attachments, - List<
ChatItem> repliesTo = const [],
Posts a new ChatMessage to the specified Chat by the authenticated MyUser.
For the posted ChatMessage to be meaningful, at least one of text
or
attachments
arguments must be specified and non-empty.
Specify repliesTo
argument if the posted ChatMessage is going to be a
reply to some other ChatItem.
Implementation
Future<void> sendChatMessage(
ChatId chatId, {
ChatMessageText? text,
List<Attachment>? attachments,
List<ChatItem> repliesTo = const [],
});