handleRemoteJsep method

Future<void> handleRemoteJsep(
  1. RTCSessionDescription? data
)

It allows you to set Remote Description on internal peer connection, Received from janus server

Implementation

Future<void> handleRemoteJsep(RTCSessionDescription? data) async {
  // var state = webRTCHandle?.peerConnection?.signalingState;
  if (data != null) {
    await webRTCHandle?.peerConnection?.setRemoteDescription(data);
  }
}