receivedAnswerSdp method
Implementation
void receivedAnswerSdp(AnswerSdpData data) async {
final connection = getConnection(data.userId!);
if (connection != null) {
await connection.setAnswerSdp(data.sdp!);
}
}
void receivedAnswerSdp(AnswerSdpData data) async {
final connection = getConnection(data.userId!);
if (connection != null) {
await connection.setAnswerSdp(data.sdp!);
}
}