VideoSettings constructor

VideoSettings({
  1. int width = 480,
  2. int height = 272,
  3. int bitrate = 160 * 1000,
  4. int frameInterval = 2,
  5. ProfileLevel profileLevel = ProfileLevel.h264Baseline31,
})

Implementation

VideoSettings({
  this.width = 480,
  this.height = 272,
  this.bitrate = 160 * 1000,
  this.frameInterval = 2,
  this.profileLevel = ProfileLevel.h264Baseline31,
});