RCRTCEngineSetup.create constructor

RCRTCEngineSetup.create({
  1. bool reconnectable = true,
  2. int statsReportInterval = 1000,
  3. bool enableSRTP = false,
  4. String? mediaUrl,
  5. RCRTCAudioSetup? audioSetup,
  6. RCRTCVideoSetup? videoSetup,
})

Implementation

RCRTCEngineSetup.create({
  this.reconnectable = true,
  this.statsReportInterval = 1000,
  this.enableSRTP = false,
  this.mediaUrl,
  this.audioSetup,
  this.videoSetup,
});