ResponseAudioOutputOptions.fromJson constructor
Implementation
factory ResponseAudioOutputOptions.fromJson(Map<String, dynamic> json) {
return ResponseAudioOutputOptions(
format: json['format'] == null ? null : AudioFormat.fromJson(json['format']),
voice: json['voice'] == null ? null : SpeechVoice.fromJson(json['voice']),
);
}