ChatMessage constructor

ChatMessage(
  1. ChatItemId id,
  2. ChatId chatId,
  3. User author,
  4. PreciseDateTime at, {
  5. SendingStatus? status,
  6. List<ChatItemQuote> repliesTo = const [],
  7. ChatMessageText? text,
  8. PreciseDateTime? editedAt,
  9. List<Attachment> attachments = const [],
})

Implementation

ChatMessage(
  super.id,
  super.chatId,
  super.author,
  super.at, {
  super.status,
  this.repliesTo = const [],
  this.text,
  this.editedAt,
  this.attachments = const [],
});