toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (displayName != null) 'displayName': displayName!,
  if (llmModelSettings != null) 'llmModelSettings': llmModelSettings!,
  if (modelParameter != null) 'modelParameter': modelParameter!,
  if (name != null) 'name': name!,
  if (placeholders != null) 'placeholders': placeholders!,
  if (promptText != null) 'promptText': promptText!,
};