toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final model = this.model;
final modelOutput = this.modelOutput;
final renderedPrompt = this.renderedPrompt;
return {
'model': ?model,
'modelOutput': ?modelOutput,
'renderedPrompt': ?renderedPrompt,
};
}