getVideoDeviceManager method
@hidden(iOS) @detail api @author zhangzhenyu.samuel @brief Get ByteRTCVideoDeviceManager{@link #ByteRTCVideoDeviceManager} @return ByteRTCVideoDeviceManager{@link #ByteRTCVideoDeviceManager}
Implementation
FutureOr<ByteRTCVideoDeviceManager> getVideoDeviceManager() async {
final result = await nativeCall('getVideoDeviceManager', []);
return packObject(
result,
() => ByteRTCVideoDeviceManager(
const NativeClassOptions([], disableInit: true)));
}