ChatMessage.createSendMessage constructor Null safety

ChatMessage.createSendMessage(
  1. {required ChatMessageBody body,
  2. String? to,
  3. ChatType chatType = ChatType.Chat}
)

Creates a message instance for sending.

Param body The message body.

Param to The ID of the message recipient.

  • For a one-to-one chat, it is the username of the peer user.
  • For a group chat, it is the group ID.
  • For a chat room, it is the chat room ID.

Return The message instance.

Implementation

ChatMessage.createSendMessage({
  required this.body,
  this.to,
  this.chatType = ChatType.Chat,
})  : this.from = ChatClient.getInstance.currentUsername,
      this.conversationId = to {
  this.hasRead = true;
  this.direction = MessageDirection.SEND;
  this.onlineState = true;
}