ChatBot constructor

const ChatBot({
  1. Key? key,
  2. required ChatControllerInterface chatController,
  3. Widget? customTypeIndicator,
  4. TextStyle? styleTextHourBubble,
  5. StyleSentByMe? styleSentByMeBubble,
  6. StyleReceivedByMe? styleReceivedByMeBubble,
  7. ChatInputStyle? styleInput,
})

You must provide a ChatController to use this widget.

Implementation

const ChatBot(
    {super.key,
    required this.chatController,
    this.customTypeIndicator,
    this.styleTextHourBubble,
    this.styleSentByMeBubble,
    this.styleReceivedByMeBubble,
    this.styleInput});