Image23D constructor

const Image23D({
  1. required String apiKey,
  2. String? webhook,
  3. String? trackId,
  4. required dynamic image,
  5. int? resolution,
  6. String? outputFormat,
  7. bool? render,
  8. int? seed,
  9. bool? multiImage,
  10. double? ssGuidanceStrength,
  11. double? slatGuidanceStrength,
  12. int? slatSamplingSteps,
  13. double? meshSimplify,
  14. int? chunkSize,
  15. String? temp,
})

Implementation

const Image23D({
  required this.apiKey,
  this.webhook,
  this.trackId,
  required this.image,
  this.resolution,
  this.outputFormat,
  this.render,
  this.seed,
  this.multiImage,
  this.ssGuidanceStrength,
  this.slatGuidanceStrength,
  this.slatSamplingSteps,
  this.meshSimplify,
  this.chunkSize,
  this.temp,
});