toJson method

dynamic toJson()

Implementation

toJson() {
  return {
    'text': text,
    'chatroom_id': chatroomId,
    'expiry_time': expiryTime,
    'replied_conversation_id': replyId,
    'temporary_id': temporaryId,
    'has_files': hasFiles,
    'attachment_count': attachmentCount,
    'og_tags': ogTags?.toEntity().toJson(),
    'share_link': shareLink,
  };
}