FfmpegStream constructor

const FfmpegStream({
  1. String? videoId,
  2. String? audioId,
})

Implementation

const FfmpegStream({
  this.videoId,
  this.audioId,
}) : assert(videoId != null || audioId != null, "FfmpegStream must include a videoId, or an audioId.");