toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final llmModelSettings = this.llmModelSettings;
final modelParameter = this.modelParameter;
final name = this.name;
final placeholders = this.placeholders;
final promptText = this.promptText;
return {
'displayName': ?displayName,
'llmModelSettings': ?llmModelSettings,
'modelParameter': ?modelParameter,
'name': ?name,
'placeholders': ?placeholders,
'promptText': ?promptText,
};
}