toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      'key': key,
      'webhook': webhook,
      'track_id': trackId,
      'model_id': modelId,
      'prompt': prompt,
      'negative_prompt': negativePrompt,
      'seed': seed,
      'width': width,
      'height': height,
      'num_frames': numFrames,
      'num_inference_steps': numInferenceSteps,
      'guidance_scale': guidanceScale,
      'fps': fps,
    };