ChatPanel constructor

const ChatPanel({
  1. required VoicebotSession session,
  2. required VoidCallback onMinimize,
  3. required VoidCallback onClose,
  4. VoicebotTheme? theme,
  5. bool showVoiceControls = true,
  6. Key? key,
})

Implementation

const ChatPanel({
  required this.session,
  required this.onMinimize,
  required this.onClose,
  this.theme,
  this.showVoiceControls = true,
  super.key,
});