InteriorSchema constructor

const InteriorSchema({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required String prompt,
  5. dynamic initImage,
  6. String? negativePrompt,
  7. double? strength,
  8. bool? base64,
  9. int? seed,
  10. int? guidanceScale,
  11. int? numInferenceSteps,
})

Implementation

const InteriorSchema({
  required this.key,
  this.webhook,
  this.trackId,
  required this.prompt,
  this.initImage,
  this.negativePrompt,
  this.strength,
  this.base64,
  this.seed,
  this.guidanceScale,
  this.numInferenceSteps,
});