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.");