toMap method
Converts this object to a Map.
Implementation
Map<String, dynamic> toMap() {
return {
'temperature': temperature,
'maxOutputTokens': maxOutputTokens,
'topP': topP,
'topK': topK,
'stopSequences': stopSequences,
'candidateCount': candidateCount,
};
}