setIceCandidate method
Implementation
void setIceCandidate(IceCandidateData data) async {
final connection = getConnection(data.userId!);
await connection.setCandidate(data.candidate!);
}
void setIceCandidate(IceCandidateData data) async {
final connection = getConnection(data.userId!);
await connection.setCandidate(data.candidate!);
}