AgentConfigs constructor

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

Implementation

AgentConfigs({
  this.image,
  this.displayName,
  this.customQuestions,
  this.description,
  this.isSpeech2Text,
  this.languages,
  this.colors,

});