receivedConnectionRequest method
Implementation
void receivedConnectionRequest(UserJoinedData? data) async {
final connection = await createConnection(data!);
if (connection != null) {
sendOfferSdp(data.userId!);
}
}
void receivedConnectionRequest(UserJoinedData? data) async {
final connection = await createConnection(data!);
if (connection != null) {
sendOfferSdp(data.userId!);
}
}