MessageBubble constructor

const MessageBubble({
  1. Key? key,
  2. required AIMessage message,
  3. required AIChatTheme theme,
  4. bool isStreaming = false,
})

Implementation

const MessageBubble({
  super.key,
  required this.message,
  required this.theme,
  this.isStreaming = false,
});