createAnswer method
Implementation
Future<RTCSessionDescription?>? createAnswer() async {
if (rtcPeerConnection != null) {
final RTCSessionDescription sdp =
await rtcPeerConnection!.createAnswer(offerSdpConstraints);
await rtcPeerConnection!.setLocalDescription(sdp);
return sdp;
}
//remove this
}