ChatBubble constructor

const ChatBubble({
  1. required String text,
  2. required bool isSentByMe,
  3. required DateTime time,
  4. Key? key,
  5. bool isSupportDevButton = false,
  6. bool isShareButton = false,
})

Implementation

const ChatBubble({
  required this.text,
  required this.isSentByMe,
  required this.time,
  super.key,
  this.isSupportDevButton = false,
  this.isShareButton = false,
});