handle property

int get handle

An opaque handle representing this connection to the USB device and all associated claimed interfaces and pending transfers. A new handle is created each time the device is opened. The connection handle is different from Device.device.

Implementation

int get handle => _wrapped.handle;
set handle (int v)

Implementation

set handle(int v) {
  _wrapped.handle = v;
}