VoiceAgentProcessResult constructor

const VoiceAgentProcessResult({
  1. required bool speechDetected,
  2. String? transcription,
  3. String? response,
  4. Uint8List? synthesizedAudio,
})

Implementation

const VoiceAgentProcessResult({
  required this.speechDetected,
  this.transcription,
  this.response,
  this.synthesizedAudio,
});