SmartChatBotHelper constructor

const SmartChatBotHelper({
  1. Key? key,
  2. required String appName,
  3. required String appDescription,
  4. required Map<String, String> predefinedMessages,
  5. required Map<String, String> predefinedButtons,
  6. ChatBotTheme? theme,
  7. bool showPredefinedAsChatMessages = false,
  8. ChatBotOpenType openType = ChatBotOpenType.bottomSheet,
  9. required String token,
})

Implementation

const SmartChatBotHelper({
  super.key,
  required this.appName,
  required this.appDescription,
  required this.predefinedMessages,
  required this.predefinedButtons,
  this.theme,
  this.showPredefinedAsChatMessages = false,
  this.openType = ChatBotOpenType.bottomSheet,
  required this.token

});