ImageGenerationRequest constructor

const ImageGenerationRequest({
  1. required String prompt,
  2. String? model,
  3. String? negativePrompt,
  4. String? size,
  5. int? count,
  6. int? seed,
  7. int? steps,
  8. double? guidanceScale,
  9. bool? enhancePrompt,
  10. String? style,
  11. String? quality,
  12. String? responseFormat,
  13. String? user,
})

Implementation

const ImageGenerationRequest({
  required this.prompt,
  this.model,
  this.negativePrompt,
  this.size,
  this.count,
  this.seed,
  this.steps,
  this.guidanceScale,
  this.enhancePrompt,
  this.style,
  this.quality,
  this.responseFormat,
  this.user,
});