getRemoteVideoView method

AgoraVideoView? getRemoteVideoView(
  1. int agoraUid
)

Implementation

AgoraVideoView? getRemoteVideoView(int agoraUid) {
  if (_chat.model.curCall != null) {
    String channel = _chat.model.curCall!.channel;
    return _rtc.remoteView(agoraUid, channel);
  }
  return null;
}