AgentConfigs constructor

AgentConfigs({
  1. String? displayName,
  2. String? description,
  3. String? image,
  4. FileConfig? fileConfig,
  5. List? customQuestions,
  6. bool? isSpeech2text,
  7. List<String>? languages,
  8. Map<String, dynamic>? colors,
  9. String? voice_code,
})

Implementation

AgentConfigs({
  this.displayName,
  this.description,
  this.image,
  this.fileConfig, // Optional fileConfig
  this.customQuestions,
  this.isSpeech2text,
  this.languages,
  this.colors,
  this.voice_code,
});