AceChat constructor

const AceChat({
  1. Key? key,
  2. required String apiKey,
  3. required Map<String, dynamic> knowledgeBase,
  4. required String botName,
})

Implementation

const AceChat({
  super.key,
  required this.apiKey,
  required this.knowledgeBase,
  required this.botName,
});