StreamMessageTile constructor

const StreamMessageTile({
  1. required Message message,
  2. required bool isOwn,
  3. bool showAvatar = true,
  4. bool showAuthor = true,
  5. bool showActions = true,
  6. bool showThreadFooter = true,
  7. bool showDeliveryState = false,
  8. List<User> readBy = const [],
  9. bool highlighted = false,
  10. void onQuotedMessageTap(
    1. Message quoted
    )?,
  11. Key? key,
})

Creates a message tile.

Implementation

const StreamMessageTile({
  required this.message,
  required this.isOwn,
  this.showAvatar = true,
  this.showAuthor = true,
  this.showActions = true,
  this.showThreadFooter = true,
  this.showDeliveryState = false,
  this.readBy = const [],
  this.highlighted = false,
  this.onQuotedMessageTap,
  super.key,
});