ChatBotBubble constructor

const ChatBotBubble({
  1. Key? key,
  2. required int index,
  3. required ChatBotMessage message,
  4. required ChatBotBubbleDecoration decoration,
  5. required ChatMessageBuilder chatMessageBuilder,
  6. Widget? trailing,
})

Implementation

const ChatBotBubble({
  Key? key,
  required this.index,
  required this.message,
  required this.decoration,
  required this.chatMessageBuilder,
  this.trailing,
}) : super(key: key);