UsbDevice constructor

UsbDevice({
  1. required String type,
  2. required String productId,
  3. required String vendorId,
  4. bool connected = false,
})

Implementation

UsbDevice({
  required this.type,
  required this.productId,
  required this.vendorId,
  this.connected = false,
});