toJson method
Implementation
Map<String, dynamic> toJson() => {
'contents': [
{
'parts': [
{'text': text}
]
}
],
'generationConfig': {
'responseModalities': ['AUDIO'],
'speechConfig': _buildSpeechConfig(),
if (generationConfig != null) ...generationConfig!,
},
if (model != null) 'model': model,
};