DeviceInfo constructor

DeviceInfo({
  1. int? deviceId = 0,
  2. String version = '',
  3. String deviceName = '',
  4. String manufacturerName = '',
  5. String productName = '',
  6. int? productId = 0,
  7. int? vendorId = 0,
  8. String serialNumber = '',
})

Implementation

DeviceInfo({
  this.deviceId = 0,
  this.version = '',
  this.deviceName = '',
  this.manufacturerName = '',
  this.productName = '',
  this.productId = 0,
  this.vendorId = 0,
  this.serialNumber = '',
});