RCRTCVideoConfig.create constructor

RCRTCVideoConfig.create({
  1. int minBitrate = 500,
  2. int maxBitrate = 2200,
  3. RCRTCVideoFps fps = RCRTCVideoFps.fps_24,
  4. RCRTCVideoResolution resolution = RCRTCVideoResolution.resolution_720_1280,
  5. bool mirror = false,
})

Implementation

RCRTCVideoConfig.create({
  this.minBitrate = 500,
  this.maxBitrate = 2200,
  this.fps = RCRTCVideoFps.fps_24,
  this.resolution = RCRTCVideoResolution.resolution_720_1280,
  this.mirror = false,
});