ChatBotDialog constructor

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

Implementation

const ChatBotDialog({
  super.key,
  required this.appName,
  required this.appDescription,
  required this.predefinedMessages,
  required this.predefinedButtons,
  required this.theme,
  this.showPredefinedAsChatMessages = false,
  this.isFullPage = false,
  required this.token,
});