enumerateVideoCaptureDevices method

FutureOr<List<VideoDeviceInfo>> enumerateVideoCaptureDevices()

@valid since 3.56 @detail api @author likai.666 @brief Get a list of video capture devices in the current system. @return Contains a list of all video capture devices in the system. See VideoDeviceInfo{@link #VideoDeviceInfo}.

Implementation

FutureOr<List<VideoDeviceInfo>> enumerateVideoCaptureDevices() async {
  return await nativeCall('enumerateVideoCaptureDevices', []);
}