RTCOfferOptions constructor

RTCOfferOptions({
  1. bool? iceRestart,
})

Implementation

factory RTCOfferOptions({bool? iceRestart}) =>
    RTCOfferOptions._(iceRestart: iceRestart ?? false);