VideoInfo constructor

const VideoInfo({
  1. required int width,
  2. required int height,
  3. required int bitrate,
  4. required double frameRate,
  5. String? layerId,
  6. String? qualityLimitationReason,
})

Implementation

const VideoInfo({
  required this.width,
  required this.height,
  required this.bitrate,
  required this.frameRate,
  this.layerId,
  this.qualityLimitationReason,
});