PatchedPrompt constructor

PatchedPrompt({
  1. int? id,
  2. String? mentor,
  3. bool isSystem = true,
  4. String? category,
  5. String? prompt,
  6. String? description,
  7. DateTime? createdAt,
  8. DateTime? updatedAt,
  9. Object? metadata,
  10. int? platform,
})

Returns a new PatchedPrompt instance.

Implementation

PatchedPrompt({
  this.id,
  this.mentor,
  this.isSystem = true,
  this.category,
  this.prompt,
  this.description,
  this.createdAt,
  this.updatedAt,
  this.metadata,
  this.platform,
});