VideoParameter constructor Null safety

VideoParameter(
  1. int width,
  2. int height,
  3. int fps,
  4. {int? bitrate}
)

Implementation

VideoParameter(
  this.width,
  this.height,
  this.fps, {
  this.bitrate,
});