Text23D constructor

const Text23D({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required String prompt,
  5. String? resolution,
  6. String? outputFormat,
  7. bool? render,
  8. String? negativePrompt,
  9. int? seed,
  10. int? guidanceScale,
  11. int? numInferenceSteps,
  12. double? ssGuidanceStrength,
  13. double? slatGuidanceStrength,
  14. int? slatSamplingSteps,
  15. double? meshSimplify,
  16. double? foregroundRatio,
  17. bool? removeBg,
  18. int? chunkSize,
  19. String? temp,
})

Implementation

const Text23D({
  required this.key,
  this.webhook,
  this.trackId,
  required this.prompt,
  this.resolution,
  this.outputFormat,
  this.render,
  this.negativePrompt,
  this.seed,
  this.guidanceScale,
  this.numInferenceSteps,
  this.ssGuidanceStrength,
  this.slatGuidanceStrength,
  this.slatSamplingSteps,
  this.meshSimplify,
  this.foregroundRatio,
  this.removeBg,
  this.chunkSize,
  this.temp,
});