SingleVideoSwap constructor

const SingleVideoSwap({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required dynamic initImage,
  5. required dynamic initVideo,
  6. String? outputFormat = "mp4",
  7. bool? watermark,
})

Implementation

const SingleVideoSwap({
  required this.key,
  this.webhook,
  this.trackId,
  required this.initImage,
  required this.initVideo,
  this.outputFormat = "mp4",
  this.watermark,
});