My app uses Xamarin.Forms. Now I am trying to apply IceLink for implementing video calls. Is there a way to switch between front/rear/anyOther camera? I saw a sample where LocalMediaStream's UseNextVideoDevice() method is used, but now LocalMediaStream is obsolete, and I don't have it. But I do have IceLink.FM.LocalMedia object in my PageModel.
public void SwitchCamera()
{
if (_localMedia == null)
return;
// _localMedia.UseNextVideoDevice(); // obsolete
}
Is it possible to make that switch between cameras?