ChatBubbleHaiva constructor

ChatBubbleHaiva({
  1. Key? key,
  2. required ResponseMessage message,
  3. required dynamic onSendMessage(
    1. String,
    2. bool
    ),
  4. required dynamic onFormSubmit(
    1. Map<String, dynamic>
    ),
  5. required AgentConfigs agentDetails,
  6. String? locale,
  7. required bool stopSpeaking,
  8. required bool isSpeaking,
})

Implementation

ChatBubbleHaiva(
    {Key? key, required this.message,
      required this.onSendMessage,
      required this.onFormSubmit,
      required this.agentDetails,
      this.locale, required this.stopSpeaking, required this.isSpeaking})
    : super(key: key);