ChatBotView constructor

ChatBotView({
  1. Key? key,
  2. required ChatBotController<ChatBotMessageConvertible> controller,
  3. required ChatBotBubble bubbleBuilder(
    1. BuildContext,
    2. int,
    3. ChatBotMessage
    ),
  4. required Widget typingIndicator,
  5. required Widget inputView,
  6. required ChatBotState state,
  7. required EdgeInsets padding,
})

Implementation

ChatBotView({
  Key? key,
  required this.controller,
  required this.bubbleBuilder,
  required this.typingIndicator,
  required this.inputView,
  required this.state,
  required this.padding,
});