control method
Create a camera control for a vendorId and productId.
Remember to release the camera with close when you are done using it.
Implementation
UvcControl control({required int vendorId, required int productId}) =>
UvcControl(
libusb: libusb,
contextPtr: _contextPtr,
vendorId: vendorId,
productId: productId,
debugLogging: debugLogging,
);