Text2VideoUltra constructor

const Text2VideoUltra({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required String prompt,
  5. String? negativePrompt,
  6. int? seed,
  7. String? resolution = "512x512",
  8. int? numFrames = 30,
  9. int? numInferenceSteps = 50,
  10. double? guidanceScale = 7.5,
  11. int? fps = 8,
  12. bool? portrait,
  13. int? sampleShift,
})

Implementation

const Text2VideoUltra({
  required this.key,
  this.webhook,
  this.trackId,
  required this.prompt,
  this.negativePrompt,
  this.seed,
  this.resolution = "512x512",
  this.numFrames = 30,
  this.numInferenceSteps = 50,
  this.guidanceScale = 7.5,
  this.fps = 8,
  this.portrait,
  this.sampleShift,
});