postChatMessage method

Future<ChatEventsVersionedMixin?> postChatMessage(
  1. ChatId chatId, {
  2. ChatMessageText? text,
  3. List<AttachmentId>? attachments,
  4. List<ChatItemId> 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.

To attach some Attachments to the posted ChatMessage, first, they should be uploaded with uploadAttachment, and only then, the returned Attachment.ids may be used as the attachments argument of this method.

Specify repliesTo argument if the posted ChatMessage is going to be a reply to some other ChatItem.

Implementation

Future<ChatEventsVersionedMixin?> postChatMessage(
  ChatId chatId, {
  ChatMessageText? text,
  List<AttachmentId>? attachments,
  List<ChatItemId> repliesTo = const [],
}) async {
  Log.debug(
    'postChatMessage($chatId, $text, $attachments, $repliesTo)',
    '$runtimeType',
  );

  return await _graphQlProvider.postChatMessage(
    chatId,
    text: text,
    attachments: attachments,
    repliesTo: repliesTo,
  );
}