VideoDescription constructor

VideoDescription({
  1. required String name,
  2. VideoCodecSettings? codecSettings,
  3. int? height,
  4. VideoDescriptionRespondToAfd? respondToAfd,
  5. VideoDescriptionScalingBehavior? scalingBehavior,
  6. int? sharpness,
  7. int? width,
})

Implementation

VideoDescription({
  required this.name,
  this.codecSettings,
  this.height,
  this.respondToAfd,
  this.scalingBehavior,
  this.sharpness,
  this.width,
});