RTCOfferOptions constructor

RTCOfferOptions({
  1. bool? iceRestart,
  2. bool? offerToReceiveAudio,
  3. bool? offerToReceiveVideo,
})

Implementation

factory RTCOfferOptions({
  _i2.bool? iceRestart,
  _i2.bool? offerToReceiveAudio,
  _i2.bool? offerToReceiveVideo,
}) =>
    RTCOfferOptions._(
      iceRestart: iceRestart,
      offerToReceiveAudio: offerToReceiveAudio,
      offerToReceiveVideo: offerToReceiveVideo,
    );