ChatBubble constructor

const ChatBubble({
  1. Key? key,
  2. RoomClient? room,
  3. required bool mine,
  4. required String text,
  5. VoidCallback? onDelete,
  6. Widget reactionActionBuilder(
    1. ShadContextMenuController controller
    )?,
  7. bool showReactionAction = false,
  8. VoidCallback? onReactFromMenu,
  9. ThreadStorageSaveSurfacePresenter? mobileStorageSaveSurfacePresenter,
  10. bool fullWidth = false,
})

Implementation

const ChatBubble({
  super.key,
  this.room,
  required this.mine,
  required this.text,
  this.onDelete,
  this.reactionActionBuilder,
  this.showReactionAction = false,
  this.onReactFromMenu,
  this.mobileStorageSaveSurfacePresenter,
  this.fullWidth = false,
});