getVideoDeviceManager method
@hidden(iOS) @detail api @author zhangzhenyu.samuel @brief 创建视频设备管理实例 @return 视频设备管理实例,详见 ByteRTCVideoDeviceManager{@link #ByteRTCVideoDeviceManager}
Implementation
FutureOr<ByteRTCVideoDeviceManager> getVideoDeviceManager() async {
final result = await nativeCall('getVideoDeviceManager', []);
return packObject(
result,
() => ByteRTCVideoDeviceManager(
const NativeClassOptions([], disableInit: true)));
}