toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final enableTextToSpeech = this.enableTextToSpeech;
final outputAudioEncoding = this.outputAudioEncoding;
final sampleRateHertz = this.sampleRateHertz;
final synthesizeSpeechConfigs = this.synthesizeSpeechConfigs;
return {
'enableTextToSpeech': ?enableTextToSpeech,
'outputAudioEncoding': ?outputAudioEncoding,
'sampleRateHertz': ?sampleRateHertz,
'synthesizeSpeechConfigs': ?synthesizeSpeechConfigs,
};
}