UsbPrinterInfo.Windows constructor

UsbPrinterInfo.Windows({
  1. required String name,
  2. required String? model,
  3. required bool isDefault,
  4. String vendorId = '',
  5. String productId = '',
  6. String manufacturer = '',
  7. String product = '',
  8. String deviceId = '',
})

Implementation

UsbPrinterInfo.Windows({
  required this.name,
  required this.model,
  required this.isDefault,
  this.vendorId = '',
  this.productId = '',
  this.manufacturer = '',
  this.product = '',
  this.deviceId = '',
});