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