ChatBubble constructor

const ChatBubble({
  1. Key? key,
  2. required String message,
  3. required bool isUser,
  4. DateTime? timestamp,
})

Implementation

const ChatBubble({
  super.key,
  required this.message,
  required this.isUser,
  this.timestamp,
});