ChatItemWidget constructor

const ChatItemWidget({
  1. Key? key,
  2. required Rx<ChatItem> item,
  3. required Rx<Chat?> chat,
  4. required UserId me,
  5. RxUser? user,
  6. bool avatar = true,
  7. Iterable<LastChatRead> reads = const [],
  8. FutureOr<RxUser?> getUser(
    1. UserId userId
    )?,
  9. FutureOr<Rx<ChatItem>?> getItem(
    1. ChatItemId itemId
    )?,
  10. void onHide()?,
  11. void onDelete()?,
  12. void onReply()?,
  13. void onEdit()?,
  14. void onCopy(
    1. String text
    )?,
  15. Paginated<ChatItemId, Rx<ChatItem>> onGallery()?,
  16. void onRepliedTap(
    1. ChatItemQuote
    )?,
  17. void onResend()?,
  18. void onFileTap(
    1. FileAttachment
    )?,
  19. Future<void> onAttachmentError(
    1. ChatItem?
    )?,
  20. void onDownload(
    1. List<Attachment>
    )?,
  21. void onDownloadAs(
    1. List<Attachment>
    )?,
  22. void onSave(
    1. List<Attachment>
    )?,
  23. void onSelect()?,
  24. void onUserPressed(
    1. User
    ) = _defaultOnUserPressed,
  25. void onDragging(
    1. bool
    )?,
})

Implementation

const ChatItemWidget({
  super.key,
  required this.item,
  required this.chat,
  required this.me,
  this.user,
  this.avatar = true,
  this.reads = const [],
  this.getUser,
  this.getItem,
  this.onHide,
  this.onDelete,
  this.onReply,
  this.onEdit,
  this.onCopy,
  this.onGallery,
  this.onRepliedTap,
  this.onResend,
  this.onFileTap,
  this.onAttachmentError,
  this.onDownload,
  this.onDownloadAs,
  this.onSave,
  this.onSelect,
  this.onUserPressed = _defaultOnUserPressed,
  this.onDragging,
});