开始显示远端视频画面。

    参数名称 参数描述 参数类型
    userId 用户ID String

    使用:
    由于视频输入输出属于视频视图相关内容,所以不能直接使用 TencentRtcPlugin 类来进行接口调用,而是需要在 build 中创建一个视图组件,然后通过视图组件的 controller 进行调用方法,例如:

    1. TencentRtcVideoView(
    2. onViewCreated: (TencentRtcVideoViewController controller) {
    3. controller.startRemoteView(userId: "123");
    4. },
    5. )